Sfoglia il codice sorgente

fix(mobile): incorrect status bar color for the android platform

charlie 2 mesi fa
parent
commit
53bfcbee76
1 ha cambiato i file con 2 aggiunte e 6 eliminazioni
  1. 2 6
      src/main/frontend/util.cljc

+ 2 - 6
src/main/frontend/util.cljc

@@ -216,17 +216,13 @@
    (defn set-theme-light
      []
      (p/do!
-      (.setStyle StatusBar (clj->js {:style (.-Light Style)}))
-      (when (mobile-util/native-android?)
-        (.setBackgroundColor StatusBar (clj->js {:color "#ffffff"}))))))
+      (.setStyle StatusBar (clj->js {:style (.-Light Style)})))))
 
 #?(:cljs
    (defn set-theme-dark
      []
      (p/do!
-      (.setStyle StatusBar (clj->js {:style (.-Dark Style)}))
-      (when (mobile-util/native-android?)
-        (.setBackgroundColor StatusBar (clj->js {:color "#000000"}))))))
+      (.setStyle StatusBar (clj->js {:style (.-Dark Style)})))))
 
 (defn find-first
   [pred coll]