the scrollview work in ios but not in android
import React from 'react';
import {
ScrollView,
StyleSheet,
Text,
View,
} from 'react-native';
export default class HomeScreen extends React.Component {
render() {
return (
<ScrollView style={css.outside} contentContainerStyle={css.contentContainer}>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
<Text>some text</Text>
</ScrollView>
)
}
}
const css = StyleSheet.create({
outside :{
flex:1,
},
contentContainer: {
paddingTop: 30,
},
});