I'd like the FileDownload the expand to the full width of a column / sidebar.
import solara
@solara.component
def Page():
with solara.Sidebar():
with solara.Column():
solara.InputText(label="Text input")
solara.Button(label='My button', block=True)
solara.FileDownload(label='My file download', data='foobar')
with solara.Column():
solara.InputText(label="Text input")
solara.Button(label='My button', block=True)
solara.FileDownload(label='My file download', data='foobar')
gives:

I can make the button expand in width with block=True, but the FileDownload does not accept this kwarg.
I'd like the FileDownload the expand to the full width of a column / sidebar.
gives:
I can make the button expand in width with
block=True, but theFileDownloaddoes not accept this kwarg.