图标在Android中为“视图”下,但在ios中可用。我尝试了overflow: 'visible'
,elevation: 887879778
和zIndex: 564654687
,但没有任何帮助。
以下是屏幕截图:
答案 0 :(得分:3)
此结构正常。 将这些视图放在父对象中,并与padding一起使用。
<View style={{ padding: 18 }}>
<View style={styles.left}>
<Text style={{ color: 'white' }}>Left</Text>
</View>
<View style={styles.icon}>
<Icon type="Feather" name="check" />
</View>
</View>
当然不是出色的解决方案,但适合此问题