React Native FlatList with columns, Last item width

后端 未结 8 1031
北恋
北恋 2020-12-12 23:40

I\'m using a FlatList to show a list of items in two columns



        
8条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-13 00:07

    This is the cleanest way to style a FlatList with columns and spaced evenly:

         item.id }
            renderItem={(item) =>  }
        />       
    
        const style = StyleSheet.create({
            row: {
                flex: 1,
                justifyContent: "space-around"
            }
        });
    

提交回复
热议问题