Are there plans to make a Jetpack Compose date/tim...
# compose
a
Are there plans to make a Jetpack Compose date/time picker? (You can use Android's views but these change from os version to os version etc. And the material library's date time picker uses fragments which is annoying)
👀 4
5
d
For calendar take a look at https://github.com/sigmadeltasoftware/CalPose But it's not as simple as plug & play, you need to customize is you self.
👍🏽 1
m
a
Thanks. I'm using material library's date/time picker with its fragment nastiness, since it looks good and is supported and maintained by Google, but an official version that works well with Jetpack Compose, especially with non-XML styling, would be preferable. The above solutions are great, of course.
d
There is a feature request here https://issuetracker.google.com/issues/197942880
e
Copy code
DatePickerDialog, TimePickerDialog is what we use as of now..
100 Views