你好,
我正在尝试在React-Native-Elements
Button组件中使用图标。我没有收到错误或警告,但我最终得到了一个空按钮。
这是我的一些包含按钮的代码:
<Col size={20}>
<Button icon={<Icon name="heart" color="#00aced"/>} size={30} buttonStyle={style.button}/>
</Col>
我希望有人可以帮助我,因为我不知道为什么它没有出现。
提前致谢!
根据要求提供更多信息:
import { Button } from 'react-native-elements';
import Icon from 'react-native-vector-icons/FontAwesome';
const style = {
button: {
backgroundColor: '#6A5ACD',
borderRadius: 10,
justifyContent: 'center',
alignItems: 'center',
width: '100%',
height: '100%'
}
}
我也尝试过其他的导入,比如 Fontawesome。