Reputation: 815
Tried using flex:1 style for scrollview but its not working
Dependencies
Development environment
Upvotes: 1
Views: 821
Reputation: 815
If you are using DrawerNavigator as your navigator; try with StackNavigator. I think issue is with the app navigator.
Upvotes: 1
Reputation: 916
You can use Scrollview there ... First import
import {ScrollView} from 'react-native';
Add in a view
<View style={{flex:1}}>
<ScrollView keyboardShouldPersistTaps="handled" bounces={false}>
</ScrollView>
</View>
Upvotes: 0
Reputation: 10561
There is an issue inside react native windows package. You can check following URL for the same. They have some workaround solution there.
React Native Windows ScrollView Issue
Upvotes: 1