gpt4 book ai didi

react-native - 样式不适用于 native react 的所有 TextView

转载 作者:行者123 更新时间:2023-12-04 04:09:06 26 4
gpt4 key购买 nike

下面是我屏幕的代码片段,样式在 2 个 TextView 上完美运行,但在最后一个 View 上运行不佳。谁能帮帮我?

<View style={styles.userInfo}>
<View style={styles.section}>
<Text style={[header3,styles.space,baseColor]}>{this.state.data.postCount}</Text>
<Text style={[secondary1, hintColor]}>Posts</Text>
</View>
<View style={styles.section}>
<Text style={[header3,styles.space,baseColor]}>{formatNumber(this.state.data.followersCount)}</Text>
<Text style={[secondary1, hintColor]}>Followers</Text>
</View>
<View style={styles.section}>
<Text styles={[header3,styles.space,baseColor]}>{this.state.data.followingCount}</Text>
<Text style={[secondary1, hintColor]}>Following</Text>
</View>
</View>
<Gallery items={this.state.data.images} />
</ScrollView>

最佳答案

你在最后一个文本样式中有多余的s

试试这个

<View style={styles.userInfo}>
<View style={styles.section}>
<Text style={[header3,styles.space,baseColor]}>{this.state.data.postCount}</Text>
<Text style={[secondary1, hintColor]}>Posts</Text>
</View>
<View style={styles.section}>
<Text style={[header3,styles.space,baseColor]}>{formatNumber(this.state.data.followersCount)}</Text>
<Text style={[secondary1, hintColor]}>Followers</Text>
</View>
<View style={styles.section}>
<Text style={[header3,styles.space,baseColor]}>{this.state.data.followingCount}</Text>
<Text style={[secondary1, hintColor]}>Following</Text>
</View>
</View>
<Gallery items={this.state.data.images} />
</ScrollView>

关于react-native - 样式不适用于 native react 的所有 TextView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53061413/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com