Reputation: 5903
I created an emulator with VSCode for Flutter programming purposes, everything works great except the fact that i cannot use my own keyboard to write on TextFields, i'm forced to use the embbed keyboard of the android.
How do i allow key input from my keyboard?
Upvotes: 5
Views: 5565
Reputation: 2286
Go to emulator -> I/O -> Keyboard -> Toggle Software Keyboard.
It also works on Mac when on the emulator select: command + K
Upvotes: 0
Reputation: 791
You need to explicitly specify that option on the emulated device's settings if you've created the emulator using flutter with VSCode.
There is also pictured version of these steps.
Upvotes: 12
Reputation: 1065
I have used an old emulator for API Level 23, which does not take keyboard input for my apk. So I have created new emulator for API Level 29, and then it works. Following is the step to install new emulator.
Upvotes: 0