This seems to almost fix things, however it says to disable
Keyboard: {
resizeOnFullScreen: false
}
If I set the above to false, then the keyboard covers my input. With it true, the input jumps up too high, and there is an area a different color to app back ground, the area seems to be Android native window.
E.g. with the following in MainActivity.java..
int windowColor = ContextCompat.getColor(this, R.color.debug_window_bg);
getWindow().setBackgroundDrawable(new ColorDrawable(windowColor));
the color being magneta, this s what I see
If I set resizeOnFullScreen to false, then the Keyboard covers the input.
I have https://capacitorjs.com/docs/apis/status-bar plugin installed, not sure if I am meant to replace this with System Bars Capacitor Plugin API | Capacitor Documentation
Also, the https://capacitorjs.com/docs/apis/system-bars does not have installation instructions,
npm install ???
Perhaps I need a new post for this, as I think this one is closed?
