Hi all, I am trying to use androidx.compose.materi...
# multiplatform
n
Hi all, I am trying to use androidx.compose.material3.DateRangePicker but when I run my app on iOS I get the following error. Any ideas? It seem to be related to kotlinx.datetime, which I can use directly. kotlin.native.internal.IrLinkageError: Can not get instance of singleton 'Companion': No class found for symbol 'kotlinx.datetime/Instant.Companion|null[0]'
m
Instant
got moved to the standard library. This can cause problems with libraries that have not updated kotlinx date time to 0.7.0+. They have a compatibility version of the date time library if you need it. Hopefully Compose will be updated soon. https://github.com/Kotlin/kotlinx-datetime?tab=readme-ov-file#deprecation-of-instant
🙌 1
n
Thank you. Very much appreciated