feat(android): edge-to-edge

Squashed from feat/edge-to-edge and resolved conflicts
This commit is contained in:
Nathan Walker
2025-09-02 09:19:58 -07:00
parent a12fe192d5
commit 84e9190f87
57 changed files with 1914 additions and 260 deletions

View File

@@ -107,6 +107,9 @@ export const android: {
* Hides the soft input method, usually a soft keyboard.
*/
dismissSoftInput: (nativeView?: android.view.View) => void;
setStatusBarColor: (lightColor: Color | null = null, darkColor: Color | null = null) => void;
setNavigationBarColor: (lightColor: Color | null = null, darkColor: Color | null = null) => void;
setDarkModeHandler: (handler: (bar: 'status' | 'navigation', resources: android.content.res.Resources) => boolean) => void;
};
/**