Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React-Native TextInput with focus but without keyboard showing

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 everything using the camera as well, but I really need to use the scanner whithout showing the keyboard.

Do any of you guys know if it's possible? if not, can it be done in any other way?

like image 819
Gustavo Martins do Santos Avatar asked Oct 12 '25 02:10

Gustavo Martins do Santos


1 Answers

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

like image 108
FLash Avatar answered Oct 14 '25 15:10

FLash