Skip to content

Commit 622fcae

Browse files
committed
more system ui flags added
1 parent d840c02 commit 622fcae

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

android/src/main/java/com/nh/system/ui/flags/SystemUiFlags.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ public Map<String, Object> getConstants() {
3232
constants.put("SYSTEM_UI_FLAG_LAYOUT_STABLE", View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
3333
constants.put("SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION", View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
3434
constants.put("SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN", View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
35-
36-
// TODO: add other SYSTEM_UI flags
35+
constants.put("SYSTEM_UI_FLAG_IMMERSIVE_STICKY", View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
36+
constants.put("SYSTEM_UI_FLAG_LIGHT_STATUS_BAR", View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
37+
constants.put("SYSTEM_UI_FLAG_LOW_PROFILE", View.SYSTEM_UI_FLAG_LOW_PROFILE);
38+
constants.put("SYSTEM_UI_FLAG_VISIBLE", View.SYSTEM_UI_FLAG_VISIBLE);
3739

3840
return constants;
3941
}

0 commit comments

Comments
 (0)