Does kotlinx-datetime have a way to get if the use...
# kotlinx-datetime
b
Does kotlinx-datetime have a way to get if the users system is in 24 hour time format? I thought maybe it might be a Compose Multiplatform thing but I didn’t see anything there either.
đźš« 1
e
such determination requires
android.content.Context
on Android (https://developer.android.com/reference/android/text/format/DateFormat#is24HourFormat(android.content.Context)), that's definitely not something that would fit in a multi-platform library
b
Sad, nothing multiplatform then. I suppose I could just make some expect/actual declarations. Thanks for letting me know