NativeBase
NativeBase copied to clipboard
Select component: the font size of the <Select.Item /> is not changing
Description
I'm using the <Select /> component. How can I customise <Select.Item /> ?
CodeSandbox/Snack link
https://codesandbox.io
Steps to reproduce
No response
NativeBase Version
3.4.6
Platform
- [ ] Android
- [ ] CRA
- [ ] Expo
- [X] iOS
- [ ] Next
Other Platform
No response
Additional Information
This is what I am doing in my code: <Select {...}> <Select.Item label={...} _text={{ fontSize: "2xl" }}/> </Select/>
I am observing that the font size of the <Select.Item /> is not changing.
change user extendTheme like...
const nativebaseTheme = extendTheme({
components: {
Select: {
baseStyle: {
fontSize: 14,
},
},
},
});
Hey @sanna231, Thanks for reporting the issue. We'll fix it soon.