Hello all,
I am working on a project and am curious:
What are your most used components?
- eg (html.Div, dcc.Graph…)
What properties do you use often when designing the layout, not callbacks?
- eg (id, children, figure, style…)
Hello all,
I am working on a project and am curious:
Hi @jinnyzor ,
I rarely use children
explicitly, just using square brackets directly.
Thanks for the feedback!
Have you looked into dmc? You can pass labels directly to inputs, making it one less component and you don’t have to mess with the for attribute.
Hi @jinnyzor ,
Never tried before, and this is valuable information.
So I tried immediately
This is pretty cool, just one line putting both Label and Input.
Thanks.
I use dbc
a lot to organize the layout, so it also reflects in the most used components:
I like the id
and some other properties of the component to be specified first to improve readability, so I always use children
explicitly
Is there a reason you don’t use the dbc.Button?
And thanks for the feedback!
I use a set of buttons with custom CSS styles and I think it seemed easier to customize the html.Button
compared to dbc.Button
, so I just stick with html.Button
s
@Emil, @kmhurchla, @AnnMarieW, @AIMPED, @hoatran
What are your thoughts?
Hey @jinnyzor, here my most used.
Components
Properties
Lately I’m gravitating towards dmc and html in combination with fontawesome or bootstrap stylesheets.
Hi @jinnyzor, here is my most used.
Components
Properties
For me, dash_uploader.Upload()
from this package is an important one.
Hi @jinnyzor, These are my most used components and properties.
Components
Properties
hi,
I’m a big fan of dmc. My most used components are.
#shamlessplug - I recently developed dash-resizable-panels which I have been using couple of times.
When designing layout, i usually use the attributes
components:
html.Div 41
dmc.Tab 30
html.Br 29
dmc.Group 23
dmc.Checkbox 21
dmc.MultiSelect 18
dmc.Menu 11
dmc.Button 9
Props:
className 150
id 142
children 125
label 66
radius 61
value 59
color 38
position 24