Do I need to use an on-screen keyboard with ion feed?

I like to use the command ionic servefor quick changes. I know nothing better than the actual device for development. But I would really like to use only the keyboard on the screen instead of the hardware keyboard of the computer, is this possible? I searched the ion forums and the Internet without success.

+4
source share
1 answer

This is not possible, but another option is to use this command (change the platform according to your requirement): ionic run android -l -c
This will launch the application on your mobile phone, but the same as ionic serveany changes on your computer will update the application on your device. To do this, your mobile and computer must be on the same network. In addition, the mobile phone is connected via the USB port while the application is running on mobile devices. Because all resources are served from a computer. See this for more details. Below is a link to a documentation link to use the ionic cli application reload feature.

+2
source

Source: https://habr.com/ru/post/1607677/


All Articles