如何在'react-native-vector-icons'的样式对象中使用'name'属性?

时间:2017-12-16 07:40:58

标签: react-native

使用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

0 个答案:

没有答案