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
There is a property called showSoftInputOnFocus in newer react-native versions. Setting this to false keeps the keyboard hidden.
showSoftInputOnFocus
<TextInput showSoftInputOnFocus={false} autoFocus={true}..../>
Working for me on v0.60.0