-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Android] ListView/FlatList not able to scroll inside Content component #1222
Comments
same issu |
@thienlhh Remove the height from the FlatList. If you really need the list to be taking up only that much of space. Wrap it with a View maybe and apply the height there |
Thanks @shivrajkumar for tip, may be I'll try later as my project running to deadline. I have to use an other workaround by using NestedScrollView |
I am encountering this same issue, and I do not have a fixed height set for the FlatList, but on a View as suggested by @shivrajkumar. |
@jkeller22 Were you able to resolve this as per suggestion? |
did anyone find any solution? |
@thienlhh In this case, if possible use a
See React Native issue comment here |
Closing the issue due to no response |
Did any of suggested earlier and nothing seems to be helping. Any update? My FlatList not even nested, still it is showing no signs of life or scrollability in particular...
|
@alexgnatrow can you try this facebook/react-native#1966 (comment) |
I have a FlatList inside a Content component with some other components that make the Content over height and scrollable. The problem I have that the FlatList was not able to scroll when Content scrollable.
react-native, react and native-base version
react: 16.0.0-alpha.12
react-native: 0.45.1
native-base: 2.2.0
Expected behaviour
The List should scrollable
Steps to reproduce (code snippet or screenshot)
My list:
<FlatList style={{ width: '100%', borderWidth: 1, borderColor: '#e0e1e2', marginTop: 10, height: 270, flex: 1 }} data={positions} renderItem={this.renderPosition} keyExtractor={(item, index) => item.id} />
Is the bug present in both ios and android or in any one of them?
Android only
The text was updated successfully, but these errors were encountered: