I have been developing the mobile app Kotlin/Jetpack Compose for Android and I wanted to make custom composable to bend. I have seen that there is CurvedRow in androidx.glance.wear
. The issue with it is since it is not ment for MobileOS the Applier is wrong.
The error I get is java.lang.IllegalStateException: Invalid applier
.
So my question is, is it possible to use something like CurvedRow in compose meant for mobile, something like this.
CurvedRow {
curvedComposable {
CustomComposable()
}
}
I have tried to use androidx.glance.wear
components but with no luck since Applier is invalid.