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