React-Native TextInput with focus but without keyboard showing

后端 未结 1 1603
隐瞒了意图╮
隐瞒了意图╮ 2020-12-22 02:26

I\'m developing an inventory system for my father\'s company and on of its requisites is to be able to use an external Barcode/QR Code scanner.

I\'ve developed ever

相关标签:
1条回答
  • 2020-12-22 02:38

    There is a property called showSoftInputOnFocus in newer react-native versions. Setting this to false keeps the keyboard hidden.

    <TextInput showSoftInputOnFocus={false} autoFocus={true}..../>

    Working for me on v0.60.0

    0 讨论(0)
提交回复
热议问题