[Fix] Nav bar in Syncing screen (#16014)
Signed-off-by: Mohamed Javid <19339952+smohamedjavid@users.noreply.github.com>
This commit is contained in:
parent
a18cf2f786
commit
2d1b37ab7b
|
@ -1,11 +1,9 @@
|
|||
(ns status-im2.contexts.syncing.setup-syncing.style
|
||||
(:require [quo2.foundations.colors :as colors]))
|
||||
|
||||
(defn container-main
|
||||
[top]
|
||||
(def container-main
|
||||
{:background-color colors/neutral-95
|
||||
:flex 1
|
||||
:padding-top top})
|
||||
:flex 1})
|
||||
|
||||
(def page-container
|
||||
{:margin-horizontal 20})
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
[reagent.core :as reagent]
|
||||
[status-im2.common.resources :as resources]
|
||||
[react-native.hooks :as hooks]
|
||||
[react-native.safe-area :as safe-area]
|
||||
[status-im2.contexts.syncing.utils :as sync-utils]))
|
||||
|
||||
(def code-valid-for-ms 120000)
|
||||
|
@ -66,7 +65,7 @@
|
|||
(reset! valid-for-ms code-valid-for-ms))]
|
||||
|
||||
(fn []
|
||||
[rn/view {:style (style/container-main (safe-area/get-top))}
|
||||
[rn/view {:style style/container-main}
|
||||
[:f> f-use-interval clock cleanup-clock @delay]
|
||||
[rn/scroll-view {}
|
||||
[navigation-bar]
|
||||
|
|
|
@ -90,6 +90,12 @@
|
|||
:animations {:showModal {:alpha {:from 1 :to 1 :duration 300}}
|
||||
:dismissModal {:alpha {:from 1 :to 1 :duration 300}}}})
|
||||
|
||||
(def dark-screen
|
||||
(merge (statusbar true)
|
||||
{:layout {:componentBackgroundColor colors/neutral-95
|
||||
:orientation ["portrait"]
|
||||
:backgroundColor colors/neutral-95}}))
|
||||
|
||||
(def lightbox
|
||||
{:topBar {:visible false}
|
||||
:statusBar {:backgroundColor :transparent
|
||||
|
|
|
@ -95,12 +95,11 @@
|
|||
:component communities.overview/overview}
|
||||
|
||||
{:name :settings-syncing
|
||||
:options (options/statusbar true)
|
||||
:options (merge options/dark-screen {:insets {:top? true}})
|
||||
:component settings-syncing/view}
|
||||
|
||||
{:name :settings-setup-syncing
|
||||
:options (options/statusbar true)
|
||||
|
||||
:options (merge options/dark-screen {:insets {:top? true}})
|
||||
:component settings-setup-syncing/view}
|
||||
|
||||
;; Onboarding
|
||||
|
|
Loading…
Reference in New Issue