You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set on flutter SystemChrome setEnabledSystemUIMode (SystemUiMode. EdgeToEdge); However, this setting was overwritten when unity started, and the switch page could not be restored
I wish there was a value to keep them consistent,
I tried to add a Android plugin to the source code to set SystemUiMode.edgeToEdge and it worked
Here is the code
The text was updated successfully, but these errors were encountered:
This is a known issue for all Flutter & Unity plugins.
On Android Unity might override settings like Fullscreen, screen orientation and the navigation bar once it boots up.
Further changes from Flutter's systemchrome while Unity is active don't make a difference.
You can make changes from the Unity side to revert things.
In my app I send a message to Unity which handles it using the Unity libraries like Screen.Fullscreen = false; Screen.Orientation = ...;
You can find related issues when you search for fullscreen in the issues list. For example #550
I set on flutter SystemChrome setEnabledSystemUIMode (SystemUiMode. EdgeToEdge); However, this setting was overwritten when unity started, and the switch page could not be restored
I wish there was a value to keep them consistent,
I tried to add a Android plugin to the source code to set SystemUiMode.edgeToEdge and it worked
Here is the code
The text was updated successfully, but these errors were encountered: