Possibility to combine different components together?

Is it possible to have a e.g. Checklist with an Input combined?

e.g.

□ Add ________ to the number

Hi @pp123123

I think is not possible to combine directly, but you can bild something to produce the same result.

Eg. this code:

import dash
import dash_core_components as dcc
import dash_html_components as html

app = dash.Dash(__name__)

app.layout = html.Div([
    dcc.Checklist(options=[{'label': 'Add', 'value': 'Add'}],
                  value=['Add'],
                  style={'display': 'inline-block'}),
    dcc.Input(id="input", style={'margin-left':5, 'width':40, 'display': 'inline-block'}),
    html.P("to the number.", style={'margin-left':5, 'display': 'inline-block'})
])

if __name__ == "__main__":
    app.run_server()

Will show:
image