I’m at the end of chapter 5 - Compose Multiplatform.
After refactoring the code to shared-ui, the desktop app works (kinda).
The first problem I encounter is that I cannot compile due to the file AnimatedSwipeDismiss()
. It requires opting for experimental features, so I add:
@OptIn(ExperimentalMaterial3Api::class)
This makes the code compile, however, when launching Android, adding a TimeCard
crashes the app with the following error:
java.lang.NoSuchMethodError: No static method rememberDismissState(Landroidx/compose/material3/DismissValue;Lkotlin/jvm/functions/Function1;Lkotlin/jvm/functions/Function2;Landroidx/compose/runtime/Composer;II)Landroidx/compose/material3/DismissState; in class Landroidx/compose/material3/SwipeToDismissKt; or its super classes (declaration of 'androidx.compose.material3.SwipeToDismissKt' appears in /data/app/~~CXsNnxDmCxnFc1b-6ysJTQ==/com.example.findtime.android-VN0wUNBrot1vExjCHt0fjw==/base.apk)
I didn’t make an error refactoring, the final
version of the provided source code by the authors behaves identically - crash.
What is the fix?
Also I would greatly appreciate it if the Kodeco team improved their QA, how did this not get caught?
The desktop app also has a bug, most likely related to the AnimatedSwipeDismiss
:
- add two timezone cards
- swipe the top timezone card to remove
- (expected) the top timezone card disappears, the other timezone card moves up
- (actual) both timezone cards disappear. Moving to
FindTime
and back fixes the UI and the correct timezone card appears. - With three items, only the item “moving up” disappears, the last item appears correctly.