Text
可以将图标用作react-native-vector-icons
,并且样式也可以像Text
一样完成,如下所示,
<Icon name="phone" style={Style.iconStyle} />
const Styles = {
iconStyle: {
marginTop:7,
marginRight: 10,
fontSize:20
}
}
如果我在样式对象中使用name
属性,则会抛出以下警告,
Warning:Failed prop type: Invalid props.style key 'name' supplied to 'Text'.
有没有办法在样式对象中包含name
?