美文网首页
ios下 react native 中 scrollView内T

ios下 react native 中 scrollView内T

作者: 窝头咸菜 | 来源:发表于2020-08-26 14:20 被阅读0次

    做项目的时候scrollView里面有TextInput 和button。
    TextInput 处于focus状态,会弹起软键盘。此时系统的软键盘是一个独立层级,上部分透明。当点击button的时候,实际第一次点击是点击在了软件盘的层级上,会触发收起软键盘。不会触发button的回调。
    此时解决此问题,应该给scrollView加上两个属性:

    keyboardShouldPersistTaps={'handled'}
    keyboardDismissMode={'none'}

    即可生效。

    相关文章

      网友评论

          本文标题:ios下 react native 中 scrollView内T

          本文链接:https://www.haomeiwen.com/subject/yxnxsktx.html