-
Hi! With But with theme.iconPosition="left" and with any value of theme.position it does not look good - icons are jumping to the left (desired look - when icon only moves vertically): But any theme.iconPosition and theme.position combination stretch image in Web: Could please somebody help me to understand how to make animation smooth on Android and Web? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey @giollord! The only solution for now is to write a custom animation. Unfortunately, layout transitions don't work as they should on web and we are planning to fix this behavior in the near future. Even though views on web will be animated with JavaScript in this case, the animation should be smooth as it doesn't look complex. Please try writing your custom animation (use Let me know if you still have questions or need help in writing animation using reanimated hooks. |
Beta Was this translation helpful? Give feedback.
Hey @giollord!
The only solution for now is to write a custom animation. Unfortunately, layout transitions don't work as they should on web and we are planning to fix this behavior in the near future.
Even though views on web will be animated with JavaScript in this case, the animation should be smooth as it doesn't look complex. Please try writing your custom animation (use
useAnimatedStyle
,useSharedValue
, etc.).Let me know if you still have questions or need help in writing animation using reanimated hooks.