-
Demo Project Works fine on iOS 15 but does not work fine on iOS14. I have created three examples.
The bottom two cases work, but for some reason the top one does not. 🤔 Simulator.Screen.Recording.-.iPhone.12.Pro.-.2021-09-17.at.14.01.53.mp4In the top case, the navigation bar does not appear when the screen is displayed. Can someone please help me? Experiment 1: Remove onAppear Works fine🤔 Simulator.Screen.Recording.-.iPhone.12.Pro.-.2021-09-17.at.14.29.03.mp4Experiment 2: Remove delay Also works fine🤔 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This problem was caused by the parent's state change occurring when the child's action was sent, which caused the parent's View to be recreated. 😅 I was able to solve this problem by properly separating scopes. 🙌 |
Beta Was this translation helpful? Give feedback.
This problem was caused by the parent's state change occurring when the child's action was sent, which caused the parent's View to be recreated. 😅
I was able to solve this problem by properly separating scopes. 🙌
konomae/TCANavigationScopeDemo@088db03