Fix photo selector

This commit is contained in:
ibrkhalil
2023-01-12 11:39:37 +02:00
parent 889027fffe
commit df87828d80
2 changed files with 8 additions and 7 deletions
@@ -1,13 +1,12 @@
(ns status-im2.contexts.chat.photo-selector.style
(:require [quo2.foundations.colors :as colors]
[react-native.platform :as platform]))
(ns status-im.ui2.screens.chat.photo-selector.style
(:require [quo2.foundations.colors :as colors]))
(defn gradient-container
[safe-area]
{:width "100%"
:height (+ (:bottom safe-area) 65)
:position :absolute
:bottom (if platform/ios? 0 65)})
:bottom 0})
(defn buttons-container
[safe-area]
@@ -9,8 +9,8 @@
[reagent.core :as reagent]
[status-im2.contexts.chat.photo-selector.style :as style]
[status-im.utils.core :as utils]
[quo.react]
[utils.re-frame :as rf]))
[utils.re-frame :as rf]
[status-im2.common.bottom-sheet.view :as bottom-sheet]))
(def selected (reagent/atom []))
@@ -36,7 +36,9 @@
[quo/button
{:style {:align-self :stretch
:margin-horizontal 20}
:on-press #(on-press-confirm-selection chat-id)
:on-press (fn []
(bottom-sheet/close-bottom-sheet-fn nil)
(on-press-confirm-selection chat-id))
:accessibility-label :confirm-selection}
(i18n/label :t/confirm-selection)]])))])