[#19299] fix: design feedback for settings screen (#19609)

This commit is contained in:
Mohsen 2024-04-12 19:37:07 +03:00 committed by GitHub
parent 6bc29088ab
commit 794cd57961
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 11 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 707 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -34,7 +34,7 @@
(when config/show-not-implemented-features?
{:title (i18n/label :t/dapps)
:on-press not-implemented/alert
:image-props :i/placeholder
:image-props :i/dapps
:image :icon
:blur? true
:action :arrow})

View File

@ -19,7 +19,7 @@
[rf/delay-render
[quo/category
{:list-type :settings
:container-style {:padding-bottom 0}
:container-style {:padding-bottom 12}
:blur? true
:data data}]])

View File

@ -22,13 +22,15 @@
(defn floating-button
[shared-values]
[quo/floating-shell-button
{:jump-to {:on-press #(animation/close-home-stack true)
:label (i18n/label :t/jump-to)
:customization-color (rf/sub [:profile/customization-color])}}
{:position :absolute
:bottom (utils/bottom-tabs-container-height)}
(:home-stack-opacity shared-values)])
(let [current-screen-id (rf/sub [:view-id])]
(when-not (= current-screen-id :settings)
[quo/floating-shell-button
{:jump-to {:on-press #(animation/close-home-stack true)
:label (i18n/label :t/jump-to)
:customization-color (rf/sub [:profile/customization-color])}}
{:position :absolute
:bottom (utils/bottom-tabs-container-height)}
(:home-stack-opacity shared-values)])))
(defn f-shell-stack
[]