你懂的

作者: 糖豆萌萌哒 | 来源:发表于2018-11-09 10:42 被阅读0次

    <View

              style={{

                flexDirection: "row",

                justifyContent: "space-around",

                backgroundColor: "#00A9FF"

              }}

            >

              <FlatList

                horizontal={true}

                showsHorizontalScrollIndicator={false}

                style={{ width: 100, height: 100 }}

                data={this.state.arr}

                renderItem={({ item }) => (

                  <View

                    style={{

                      alignItems: "center",

                      margin: 5,

                      marginLeft: 20,

                      marginRight: 20,

                      flexDirection: "row",

                      justifyContent: "space-around",

                      backgroundColor: "#00A9FF"

                    }}

                  >

                    <Text>{item}</Text>

                  </View>

                )}

              />

            </View>

    相关文章

      网友评论

          本文标题:你懂的

          本文链接:https://www.haomeiwen.com/subject/xgmnxqtx.html