Hi,
I'm developing a web app. I have used the browser function to set the app to fullscreen but it doesn't work.
Also, I used TextInput object when I click on it to enter some text, the screen is becoming small inorder for the keyboard to pop-up but in android platform it works fine.
Can anyone help?
Thanks in advance.
Develop games in your browser. Powerful, performant & highly capable.
When a game is running in a web page, it can't enter full-screen automatically. You can only request full screen mode after any user input - touch or mouse event. For example "Touch On tap -> request full screen".
For your second question, you probably need to change the project scaling mode to Scale Inner or Scale Outer and enable scrolling (Unbounded scrollig=yes in layout properties).
Or make your own keyboard that doesn't mess with the screen:
construct.net/en/tutorials/mobile-keyboard-and-hall-of-fame-for-all-mobile-devices-738
dop2000 Thanks for the tip. I have implemented as suggested. It is working now. Thanks alot.
As for the keyboard part, I tried with Scale inner and outer, still the screen is not fit. I will explore the other option of making my own keyboard.