Curious how people are using a date pickers in compose? I found a <library> but it uses `LocalDate` ...
b
Curious how people are using a date pickers in compose? I found a library but it uses
LocalDate
which is API 26 and above. I need to support API 24.
p
You can use Java 8's datetime apis on API < 26 by enabling desugaring https://developer.android.com/studio/write/java8-support#library-desugaring
❤️ 1
b
Thanks!