Skip to content

Commit e39175f

Browse files
authored
Merge branch 'develop' into share-community-qr-17993
2 parents e04f7d5 + 357db52 commit e39175f

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

src/status_im/common/bottom_sheet/view.cljs

+6-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
item-height (reagent/atom 0)]
6464
(fn [{:keys [hide? insets theme]}
6565
{:keys [content selected-item padding-bottom-override border-radius on-close shell?
66-
gradient-cover? customization-color hide-handle?]
66+
gradient-cover? customization-color hide-handle? blur-radius]
6767
:or {border-radius 12}}]
6868
(let [{window-height :height} (rn/get-window)
6969
bg-opacity (reanimated/use-shared-value 0)
@@ -106,7 +106,11 @@
106106
{:transform [{:translateY translate-y}]}
107107
(style/sheet insets window-height selected-item))}
108108
(when shell?
109-
[blur/ios-view {:style style/shell-bg}])
109+
[blur/ios-view
110+
{:style style/shell-bg
111+
:blur-radius (or blur-radius 20)
112+
:blur-type :transparent
113+
:overlay-color :transparent}])
110114
(when selected-item
111115
[rn/view
112116
{:on-layout #(reset! item-height (.-nativeEvent.layout.height ^js %))

src/status_im/contexts/shell/activity_center/header/view.cljs

+4-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@
4040
:size 32
4141
:accessibility-label :activity-center-open-more
4242
:on-press #(rf/dispatch [:show-bottom-sheet
43-
{:content drawer/options
44-
:theme :dark
45-
:shell? true}])}
43+
{:content drawer/options
44+
:theme :dark
45+
:shell? true
46+
:blur-radius 20}])}
4647
:i/options]]
4748
[quo/text
4849
{:size :heading-1

0 commit comments

Comments
 (0)