public static enum PlatformChannel.SystemUiOverlay extends Enum<PlatformChannel.SystemUiOverlay>
Android includes many more overlay options and flags than what is provided by SystemUiOverlay. Flutter only requires control over a subset of the overlays and those
overlays are represented by SystemUiOverlay values.
| Enum Constant and Description |
|---|
BOTTOM_OVERLAYS |
TOP_OVERLAYS |
| Modifier and Type | Method and Description |
|---|---|
static PlatformChannel.SystemUiOverlay |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlatformChannel.SystemUiOverlay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformChannel.SystemUiOverlay TOP_OVERLAYS
public static final PlatformChannel.SystemUiOverlay BOTTOM_OVERLAYS
public static PlatformChannel.SystemUiOverlay[] values()
for (PlatformChannel.SystemUiOverlay c : PlatformChannel.SystemUiOverlay.values()) System.out.println(c);
public static PlatformChannel.SystemUiOverlay valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null