diff options
author | Eiichi Yoshikawa <edo@bari-ikutsu.com> | 2024-05-29 13:13:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 05:13:36 +0100 |
commit | 211eff3d32760695faeb986d6c51de5dd5379411 (patch) | |
tree | 03d5959c700d3eb635ace2210ed44defcafed0a9 /src/App.native.tsx | |
parent | b59c8e22af0d92988d2145ea28299230f3b71180 (diff) | |
download | voidsky-211eff3d32760695faeb986d6c51de5dd5379411.tar.zst |
Add statusBarTranslucent prop (= true) to KeyboardProvider in App.native.tsx (#4208)
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 7c60d1624..b359ad911 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -143,7 +143,7 @@ function App() { * that is set up in the InnerApp component above. */ return ( - <KeyboardProvider enabled={true}> + <KeyboardProvider enabled={true} statusBarTranslucent={true}> <SessionProvider> <ShellStateProvider> <PrefsStateProvider> |