I have an app on react-native with two themes: light and dark. And it looks not so nice when the keyboard in the light colours appears in the dark theme. I need to change the theme of the keyboard depends on my app theme. On IOS it is possible to make with keyboardAppearance(enum('default', 'light', 'dark')) property from TextInput https://reactnative.dev/docs/textinput. But on Android it is not working. Does somebody know a good way to do it?
↧