React Native Component Won't Appear

Viewed 78

Im trying to create reusable flatlist component called TrendingList, the first one works, but the item below it doesn't appear. Im so confused cause i dont know how to solve this.

    <View>
     <TrendingList data={MovieResult} nav={navigation} />
    </View>
    <View>
     <TrendingList data={TV} />
    </View>

Please Help:D

1 Answers

Try this way

<View style={{flex:1}}>
    <View style={{flex:0.5}}>
       <TrendingList data={MovieResult} nav={navigation} />
    </View>
    <View style={{flex:0.5}}>
       <TrendingList data={TV} />
    </View>
<View>
Related