小编xLi*_*inn的帖子

更改输入组件的 NativeBase 主题中的字体大小

我使用 NativeBase输入组件服装主题,我尝试更改服装主题中输入组件的字体大小我已经尝试在以下示例中更改它,但它没有改变。

如何更改服装主题中输入组件的字体大小?

示例1:

const themeOne = extendTheme({
  components: {
    Input: {
      baseStyle: {
        style: { color: "white", fontSize: "20" },
      },
    },
  },
});
Run Code Online (Sandbox Code Playgroud)

示例2:

const themeOne = extendTheme({
  components: {
    Input: {
      baseStyle: {
        style: { color: "white"},
        fontSize: "20",
      },
    },
  },
});
Run Code Online (Sandbox Code Playgroud)

themes input react-native native-base

2
推荐指数
1
解决办法
2468
查看次数

标签 统计

input ×1

native-base ×1

react-native ×1

themes ×1