chore: remove identifiers screens so users are navigated straight to enable notifications during onboarding (#20506)
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 156 KiB |
Before Width: | Height: | Size: 86 KiB |
Before Width: | Height: | Size: 156 KiB |
Before Width: | Height: | Size: 89 KiB |
Before Width: | Height: | Size: 170 KiB |
|
@ -15,8 +15,6 @@
|
|||
:podcasts (js/require "../resources/images/ui2/podcasts.png")
|
||||
:generate-keys (js/require "../resources/images/ui2/generate-keys.png")
|
||||
:generate-keys1 (js/require "../resources/images/ui2/generating-keys-1.png")
|
||||
:generate-keys2 (js/require "../resources/images/ui2/generating-keys-2.png")
|
||||
:generate-keys3 (js/require "../resources/images/ui2/generating-keys-3.png")
|
||||
:ethereum-address (js/require "../resources/images/ui2/ethereum-address.png")
|
||||
:use-keycard (js/require "../resources/images/ui2/keycard.png")
|
||||
:onboarding-illustration (js/require "../resources/images/ui2/onboarding_illustration.png")
|
||||
|
|
|
@ -61,8 +61,12 @@
|
|||
reanimated/easings))))))
|
||||
|
||||
(defn title
|
||||
[insets generate-keys-opacity saving-keys-opacity keys-saved-opacity]
|
||||
(let [top-insets (+ (if rn/small-screen? 62 112) (:insets insets))]
|
||||
[insets]
|
||||
(let [top-insets (+ (if rn/small-screen? 62 112) (:insets insets))
|
||||
generate-keys-opacity (reanimated/use-shared-value 1)
|
||||
saving-keys-opacity (reanimated/use-shared-value 0)
|
||||
keys-saved-opacity (reanimated/use-shared-value 0)]
|
||||
(sequence-animation generate-keys-opacity saving-keys-opacity keys-saved-opacity)
|
||||
[rn/view
|
||||
{:position :absolute
|
||||
:top top-insets}
|
||||
|
@ -83,44 +87,20 @@
|
|||
[keys-saved-title]]]))
|
||||
|
||||
(defn content
|
||||
[generate-keys-opacity saving-keys-opacity keys-saved-opacity]
|
||||
[]
|
||||
(let [width (:width (rn/get-window))]
|
||||
[rn/view
|
||||
{:margin-top 156}
|
||||
[reanimated/view
|
||||
{:style (reanimated/apply-animations-to-style
|
||||
{:opacity generate-keys-opacity}
|
||||
{:position :absolute})}
|
||||
{:top 156
|
||||
:position :absolute}
|
||||
[rn/image
|
||||
{:resize-mode :contain
|
||||
:style (style/page-illustration width)
|
||||
:source (resources/get-image :generate-keys1)}]]
|
||||
|
||||
[reanimated/view
|
||||
{:style (reanimated/apply-animations-to-style
|
||||
{:opacity saving-keys-opacity}
|
||||
{:position :absolute})}
|
||||
[rn/image
|
||||
{:resize-mode :contain
|
||||
:style (style/page-illustration width)
|
||||
:source (resources/get-image :generate-keys2)}]]
|
||||
[reanimated/view
|
||||
{:style (reanimated/apply-animations-to-style
|
||||
{:opacity keys-saved-opacity}
|
||||
{:position :absolute})}
|
||||
[rn/image
|
||||
{:resize-mode :contain
|
||||
:style (style/page-illustration width)
|
||||
:source (resources/get-image :generate-keys3)}]]]))
|
||||
:source (resources/get-image :generate-keys1)}]]))
|
||||
|
||||
(defn view
|
||||
[]
|
||||
(let [insets (safe-area/get-insets)
|
||||
generate-keys-opacity (reanimated/use-shared-value 1)
|
||||
saving-keys-opacity (reanimated/use-shared-value 0)
|
||||
keys-saved-opacity (reanimated/use-shared-value 0)]
|
||||
(let [insets (safe-area/get-insets)]
|
||||
[rn/view {:style (style/page-container insets)}
|
||||
(sequence-animation generate-keys-opacity saving-keys-opacity keys-saved-opacity)
|
||||
[:<>
|
||||
[title insets generate-keys-opacity saving-keys-opacity keys-saved-opacity]
|
||||
[content generate-keys-opacity saving-keys-opacity keys-saved-opacity]]]))
|
||||
[title insets]
|
||||
[content]]]))
|
||||
|
|