You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the datetime dialog supports only min year and max year, however a common use case is for example select a date in the future only or set boundaries on available values.
Proposed solution is to add minimum datetime and maximum datetime to date selection and datetime selection dialogs.
The text was updated successfully, but these errors were encountered:
Right now the datetime dialog supports only min year and max year, however a common use case is for example select a date in the future only or set boundaries on available values. Proposed solution is to add minimum datetime and maximum datetime to date selection and datetime selection dialogs.
you can use like this
CalendarConfig(
yearSelection = true,
monthSelection = true,
style = CalendarStyle.MONTH,
boundary = LocalDate.of(2023, 5, 12)..uiState.currentDate
),
boundary is the range of dates that are displayed.
Right now the datetime dialog supports only min year and max year, however a common use case is for example select a date in the future only or set boundaries on available values.
Proposed solution is to add minimum datetime and maximum datetime to date selection and datetime selection dialogs.
The text was updated successfully, but these errors were encountered: