mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-13 18:25:45 +00:00
fix: backup-recovery-phrase
check item pressability (#19705)
fix: `backup-recovery-phrase` check item pressability (#19705)
This commit is contained in:
parent
ac48fbef44
commit
2e2104d4d1
@ -30,12 +30,18 @@
|
||||
|
||||
(defn- step-item
|
||||
[item index _ {:keys [checked? customization-color]}]
|
||||
[rn/view {:style style/step-item}
|
||||
[quo/selectors
|
||||
{:type :checkbox
|
||||
:customization-color customization-color
|
||||
:on-change #(swap! checked? assoc (keyword (str index)) %)}]
|
||||
[quo/text {:style {:margin-left 12}} (i18n/label item)]])
|
||||
(let [item-key (keyword (str index))
|
||||
value (get @checked? item-key)]
|
||||
[rn/pressable
|
||||
{:style style/step-item
|
||||
:hit-slop {:top 8 :bottom 8}
|
||||
:on-press #(swap! checked? assoc item-key (not value))}
|
||||
[quo/selectors
|
||||
{:type :checkbox
|
||||
:checked? value
|
||||
:customization-color customization-color
|
||||
:on-change #(swap! checked? assoc item-key %)}]
|
||||
[quo/text {:style {:margin-left 12}} (i18n/label item)]]))
|
||||
|
||||
(defn view
|
||||
[]
|
||||
|
Loading…
x
Reference in New Issue
Block a user