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
x
37
37
1
export default function App() {
2
3
const items = [
4
<TopText key='1' />,
5
<Bar key='2' />,
6
<TabDivider key='3' type="Carpool" />,
7
<Tiles key='4' />,
8
<TabDivider key='5' type="Schedule" />,
9
<Schedule key='6' />]
10
11
return (
12
<View style={styles.container}>
13
<ScrollView style={styles.scrollViewStyle}>
14
{items}
15
</ScrollView>
16
17
<StatusBar style="auto" />
18
</View>
19
);
20
}
21
22
const styles = StyleSheet.create({
23
container: {
24
position: 'relative',
25
flex: 1,
26
backgroundColor: 'rgba(187, 248, 237, 0.41)',
27
},
28
29
scrollViewStyle: {
30
position: 'absolute',
31
top: 0,
32
bottom: 0,
33
left: 0,
34
right: 0,
35
}
36
});
37
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
1
30
30
1
export default function App() {
2
3
return (
4
<ScrollView>
5
<View style={styles.container}>
6
<TopText key='1' />
7
<Bar key='2' />
8
<TabDivider key='3' type="Carpool" />
9
<Tiles key='4' />
10
<TabDivider key='5' type="Schedule" />
11
<Schedule key='6' />
12
13
<StatusBar style='auto'/>
14
</View>
15
</ScrollView>
16
17
18
19
);
20
}
21
22
const styles = StyleSheet.create({
23
container: {
24
backgroundColor: 'rgba(187, 248, 237, 0.41)',
25
height: 2000
26
}
27
});
28
29
30