如何使用React Native中的九个方形视图进行布局?

时间:2017-11-05 14:03:16

标签: javascript reactjs react-native flexbox react-native-flexbox

如何实现如下图所示的方形布局?

或是否存在任何相关的包?

square layout

2 个答案:

答案 0 :(得分:2)

我正在使用ScrollView和flexbox的组合来实现我的静态网格视图。

import {Dimensions} from 'react-native';

....

return (
  <ScrollView>
    <View style={styles.container}>
      {
        this.props.categories.map((category, index) => {
          return (
            <TouchableOpacity
              key={index}
              style={styles.item}
              onPress={() => {}}
            >
              <Image
                style={styles.itemIcon}
                source="..."
              />
              <Text style={styles.itemTitle}>
                {category.name}
              </Text>
            </TouchableOpacity>
          )
        })
      }
    </View>
  </ScrollView>
)

var styles = StyleSheet.create({
    container: {
        flexDirection: 'row',
        flexWrap: 'wrap'
    },
    item: {
        width: Dimensions.get('window').width * 0.5,
        height: 100,
        borderWidth: 1,
        borderColor: "lightgray",
        alignItems: 'center',
        justifyContent: 'center'        
    },
    itemIcon: {
        width: 100,
        height: 100,
        resizeMode: 'contain'
    },
    itemTitle: {
        marginTop: 16,
    },
});

答案 1 :(得分:0)

我一直在搜寻相同的问题,并找到了一个更简单的解决方案。只需使用aspectRatio: 1样式属性。查看示例:https://reactnative.fun/2017/06/21/ratio/