首页 > 解决方案 > 在 React Native 上更改按钮字体大小

问题描述

我正在尝试更改我的 react 本机应用程序上的 Button 字体大小,但出现错误。有谁知道如何正确地做到这一点?谢谢你。

标签: reactjsreact-nativebuttonreact-navigation

解决方案


您可以将 react-native-elements 与titleStyleprops 一起使用。

import {Input, Button} from 'react-native-elements';

<Button
   onPress={this.addPicture}
   titleStyle={{
       color: "white",
       fontSize: 16,
   }}
   buttonStyle={{
       backgroundColor: "white",
       borderRadius: 60,
       flex: 1,
       height: 30,
       width: 30,  
   }}

   title="+"
/>

推荐阅读