https://kotlinlang.org logo
#compose
Title
# compose
b

Brett Best

09/17/2020, 7:34 AM
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

Piotr Witko

09/17/2020, 7:55 AM
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

Brett Best

09/17/2020, 7:56 AM
Thanks!
5 Views