Hey! i need your help! maybe someone has the same ...
# compose-ios
e
Hey! i need your help! maybe someone has the same issue. This is my Compose multiplatform app. This is the iOS one! im using voyager for the navigation. And today i added the:
Copy code
animation = { module = "org.jetbrains.compose.animation:animation", version.ref = "animation" }
animation-core = { module = "org.jetbrains.compose.animation:animation-core", version.ref = "animation" }
animation = "1.7.0-beta02"
y added those libraries to use the animation when clicking to an image and go to te detail and add animation to that image
Copy code
SharedTransitionLayout {
    AnimatedContent(targetState = selectedNews, transitionSpec = {
before doing this the scroll behavior worked fine, fluid. But after that the scroll in the LazyColumn and LazyRow started to move as rough, stuck. i added a video, you will se that!Let me know if you can think of something. Thanks
a
Hello. I can see that fling deceleration effect is missing here, as well as some bounce effects. The question is - does the app on Android behaves in the same way?
j
I wonder: are your other Compose dependencies also on 1.7.0-beta02? (If not, the mismatch in versions might cause unexpected behaviour).
e
Hey! the app on Android is working fine! maybe is the second issue, i'll take a look on thart
a
If you feel that it's a problem of Compose Multiplatform on iOS, it would be great to have an issue in our YouTrack. Also to speed up the investigation, you can provide a small project that reproduce your problem.
e
nice! another doubt. The only libraries im using about compose are:
Copy code
animation = { module = "org.jetbrains.compose.animation:animation", version.ref = "animation" }
animation-core = { module = "org.jetbrains.compose.animation:animation-core", version.ref = "animation" }
ui = { module = "org.jetbrains.compose.ui:ui", version.ref = "ui" }
and the plugin:
Copy code
jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose-plugin" }
should i have all of them with the same version?
a
Yes, the version of plugin as well as version of compose libraries should be the same.
e
thanks! i fixed! the different version was the problem
cheers 1
👍 1