streamlit-survey
streamlit-survey copied to clipboard
[BUG] date input
hi, the streamlit date_input has an arg for the date format and you can set the date to None as defualt value, could you add it please?
nacimiento = survey.dateinput(
':red[*]Fecha de nacimiento',
key='nacimiento',
value=None, # it does not work
min_value=datetime.now() - timedelta(days=365 * 100),
max_value=datetime.now(),
format='DD/MM/YYYY', # it does not work
)