在EditText
Android元素中,您可以通过android:imeOptions =“flagNoExtractUi”(详见
here)来防止“全屏编辑模式”激活.
有没有办法用React Native TextInput组件复制相同的行为?我通过文档和StackOverflow进行了搜索,没有找到解决方案.
从v0.40.0开始React Native的TextInput具有prop
原文链接:https://www.f2er.com/react/300770.htmldisableFullscreenUI
,它内部设置imeOptions =“flagNoExtractUi”.
< TextInput disableFullscreenUI = {true} />