Controls the behavior of system bars.
This method allows you to configure how the system bars, such as the status and navigation bars, should respond to system gestures in your application.
Note: Only supported on Android 11 (API 30) or later. Has no effect on Android 10 (API 29) or earlier versions.
Additional resources: SystemBarsBehavior
using UnityEngine; using UnityEngine.Android;
public class Controller : MonoBehaviour { public void Start() { AndroidApplication.currentWindowInsets.SetSystemBarsBehavior(AndroidWindowInsets.SystemBarsBehavior.ShowTransientBarsBySwipe); } }