dash-flexbox-grid

0.2.1 • Public • Published

dash-flexbox-grid

PyPI PyPI - Python Version NPM PyPI - License

Wrapper around react-flexbox-grid for Plotly Dash

Installation

pip install dash_flexbox_grid

Usage

 
    import dash
    import dash_flexbox_grid as dfx
    import dash_html_components as html
    
    
    app = dash.Dash('')
    app.scripts.config.serve_locally = True
    
    app.layout = dfx.Grid(id='grid', fluid=True, children=[ 
        dfx.Row(children=[ 
            dfx.Col(xs=12, lg=3, children=[ 
                html.Div('Hello,'), html.Div('World!')
            ])
        ]), 
        dfx.Row(id='row', children=[ 
            dfx.Col(id='col', xs=6, lg=2, children=html.Div('Hello, World!')), 
            dfx.Col(xs=6, lg=2, children=html.Div('Hello, World!'))
        ])
    ])
    
    
    if __name__ == '__main__':
        app.run_server(debug=True)
 

Dash

Go to this link to learn about Dash.

See the dash-component-boilerplate repo for more information.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.2.1
    2
    • latest

Version History

Package Sidebar

Install

npm i dash-flexbox-grid

Weekly Downloads

2

Version

0.2.1

License

MIT

Unpacked Size

345 kB

Total Files

37

Last publish

Collaborators

  • pikhovkin