File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 63
63
item-height (reagent/atom 0 )]
64
64
(fn [{:keys [hide? insets theme]}
65
65
{: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 ]
67
67
:or {border-radius 12 }}]
68
68
(let [{window-height :height } (rn/get-window )
69
69
bg-opacity (reanimated/use-shared-value 0 )
106
106
{:transform [{:translateY translate-y}]}
107
107
(style/sheet insets window-height selected-item))}
108
108
(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 }])
110
114
(when selected-item
111
115
[rn/view
112
116
{:on-layout #(reset! item-height (.-nativeEvent.layout.height ^js %))
Original file line number Diff line number Diff line change 40
40
:size 32
41
41
:accessibility-label :activity-center-open-more
42
42
: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 }])}
46
47
:i/options ]]
47
48
[quo/text
48
49
{:size :heading-1
You can’t perform that action at this time.
0 commit comments