提问人:Ai9398 提问时间:5/3/2023 更新时间:5/3/2023 访问量:148
键盘在移动设备上隐藏表单字段,当用户单击它或专注于使用 React Js 时
Keyboard hides form fields on mobile device, when user clicked on it or make focus on using React Js
问:
我使用 React js 创建了我的网络。如果我通过移动设备和网络设备中的浏览器访问我的网络应用程序,那么如果我按下其中一个字段,那么键盘不会隐藏任何字段。
但是当我在 android 设备中使用 React-Native-Webview 通过 APK 文件访问移动设备中的 Web 应用程序时,键盘会隐藏输入字段。
为什么会这样?
有什么解决方案吗?
这是我的 React-native-code,我在移动 APK 中使用我的 Web 应用程序转换。
<SafeAreaView
style={{
flex: 1,
}}
>
<WebView
source={{ uri: "https://renovationhub.my" }}
onMessage={(event) => {
console.log(event.nativeEvent.data) // Client received data
}}
/>
</SafeAreaView>
答: 暂无答案
评论