Skip to content
Advertisement

How do I keep my ScrollView from snapping back to the top? (React Native)

In order to create a scrollable UI, I decided to use a ScrollView to display all my components. However, whenever I try to scroll to the bottom, the app bounces back to the top as soon as I release my finger. I’ve tried adding styling to the ScrollView and its parent view, but it doesn’t seem to help my situation.

Here is my code:

JavaScript

If you can help me, I would appreciate it a lot 😀

Advertisement

Answer

I figured it out! What I had to do was wrap the ScrollView around the view, and edit the styling. Here is the updated code:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement