Im trying to make a scrollview inside a View in ReactNative. For some reason i cant scroll in the ScrollView.
render() {
return (
<View>
<View>
<Text>Top</Text>
</View>
<ScrollView >
<Text>Line 1</Text>
<Text>Line 2</Text>
<Text>Line 3</Text>
<Text>Line 4</Text>
<Text>Line 5</Text>
<Text>Line 6</Text>
<Text>Line 7</Text>
...
</ScrollView>
</View>
);
}
What is wrong here? Im testing on Android
Thanks, Magnus