Controls the foreground appearance of system bar icons and text.
Use this enum with PlayerSettings.Android.SetInsetsAppearance and PlayerSettings.Android.GetInsetsAppearance to configure the appearance of system bar icons per inset type at build time. Requires Android 11 (API 30) or higher.
Additional resources: PlayerSettings.Android.SetInsetsAppearance, AndroidWindowInsetsType.
using UnityEditor;
public class ApplyInsetsAppearance { public static void Setup() { // Set the status bar to use light icons (suitable for dark backgrounds). PlayerSettings.Android.SetInsetsAppearance(AndroidWindowInsetsType.StatusBars, AndroidWindowInsetsAppearance.Light);
// Set the navigation bar to use dark icons (suitable for light backgrounds). PlayerSettings.Android.SetInsetsAppearance(AndroidWindowInsetsType.NavigationBars, AndroidWindowInsetsAppearance.Dark); } }