EL173
EL173

Reputation: 815

react-native-windows ScrollView: View is not scrolling

Tried using flex:1 style for scrollview but its not working

Dependencies

Development environment

Upvotes: 1

Views: 821

Answers (3)

EL173
EL173

Reputation: 815

If you are using DrawerNavigator as your navigator; try with StackNavigator. I think issue is with the app navigator.

Upvotes: 1

Kartik Shah
Kartik Shah

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

TheParam
TheParam

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

Related Questions