如何将本机键盘主题设置为黑暗

tyl*_*son 6 reactjs react-native

尝试使用深色键盘主题在TextInput上设置keyboardType,如何在React Native中执行此操作?

Ter*_*ius 8

您可以keyboardAppearance在 Textinput 中设置更改主题'default', 'light', 'dark'

<TextInput
    keyboardAppearance='dark'
/>
Run Code Online (Sandbox Code Playgroud)


rya*_*an0 5

它现在支持iOS.适用于iOS的TextAppearance prop适用于TextInput,可能包含默认值,亮度或暗度值

如下所述:https://facebook.github.io/react-native/docs/textinput.html

  • 有人知道 Android 的决定吗? (2认同)