From 4d3c622947f44713816b25524048f119bf3d0380 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Wed, 4 Dec 2019 08:54:54 +0200 Subject: [PATCH] [#9470] Fix status bar in dark mode (iOS) --- src/status_im/ui/components/status_bar/styles.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/status_im/ui/components/status_bar/styles.cljs b/src/status_im/ui/components/status_bar/styles.cljs index 7c72f71ff4..67106afcc6 100644 --- a/src/status_im/ui/components/status_bar/styles.cljs +++ b/src/status_im/ui/components/status_bar/styles.cljs @@ -10,10 +10,10 @@ (styles/def status-bar-default {:ios (create-status-bar-style {:background-color colors/white - :bar-style "default"}) + :bar-style "dark-content"}) :android (create-status-bar-style {:translucent? true :bar-style "dark-content"})}) (styles/def status-bar-black {:ios (create-status-bar-style {:background-color colors/transparent}) - :android (create-status-bar-style {:background-color colors/black})}) \ No newline at end of file + :android (create-status-bar-style {:background-color colors/black})})