Skip to content Skip to sidebar Skip to footer

React Native Listview Won't Scroll

I'm just learning react-native, and I have multiple issues with listview scrolling. Using the sample code below, on my android emulator, it won't scroll at all. Pasting the code

Solution 1:

Instead of:

contentContainerStyle={ styles.list }

Just use:

style={ styles.list }

Got it working here.

Post a Comment for "React Native Listview Won't Scroll"