<TouchableOpacity style={{ here you can specify custom styles for button container }} onPress={gotoDashboard}>
<Text style={{here you can specify text styles}}>Button Text Here</Text>
// You can add there as many components according to your designs.
</TouchableOpacity>
2条答案
按热度按时间qjp7pelc1#
您可以像这样使用react-native中的Button,也可以传递颜色属性。
对于复杂和自定义按钮,您可以使用由react-native提供的Touchables按自己的样式创建它,而不必使用任何第三方库。
示例:
niknxzdl2#
您应该像这样使用titleStyle:
顺便说一句,这里有更多关于按钮的有用信息:https://reactnativeelements.com/docs/components/button