When a user swipes the avalanche forecast cards, the cards have to come to a complete stop before taking the user to the forecast screen. This is a side effect of them being a ScrollView. The plan here is:
- Refactor them to be a paging
ScrollView to hopefully make the tapping experience better.
- Refactor them to use
Reanimated instead of RN's Animated. It's a better package for animating and while it won't necessarily fix this problem, it will help
When a user swipes the avalanche forecast cards, the cards have to come to a complete stop before taking the user to the forecast screen. This is a side effect of them being a
ScrollView. The plan here is:ScrollViewto hopefully make the tapping experience better.Reanimatedinstead of RN'sAnimated. It's a better package for animating and while it won't necessarily fix this problem, it will help