WheelPickerCompose
WheelPickerCompose copied to clipboard
Add Wheel Date - Time Picker in Android Jetpack Compose.
If you change the position of the WheelTimePicker to the center, the position of the semicolon (:) is fixed and only the numbers move. 00:00 I want to express it...
``` @Composable fun WheelPicker() { // FIXME: meaningless mutable state for output only? var snappedDT:LocalDateTime by remember { mutableStateOf(LocalDateTime.MIN) } var snappedD:LocalDate by remember { mutableStateOf(LocalDate.MIN) } var snappedT:LocalTime by...
It would be great if the WheelPicker would be combined with TextField. The central number inside the WheelPicker is editable as the text in TextField, with text validation for available...
Eg: For hour, scrolling should not stop after 12. Rather it should again loop to 1 and also switch AM to PM and vice versa. For minutes, scrolling should loop...
Hi. I added Parameter `dateLocale`. You can now change this parameter to localize the Month text and AM/PM values. thanks.
Hi @commandiron , Your library was amazing. However, I think it will be great if you add new param for change locale of the month text composable so that the...
Added selected state and time unit description for talkback
Hello! First of all, let me thank you for this super cool and handy library! I was wondering if there is a way for `onSnappedDateTime` to account for the intermediary...
It would be nice to have an ability to display only available days/months that user can select. Year range could be calculated based on min and max date as well....
I have another small requirement in my project to have an ability to hide date, and only have `month` `year` selector. I have noticed you are hiding year if the...