fix: wrong color stroke in profile setting (#19815)

This commit is contained in:
codemaster 2024-05-02 05:45:43 -07:00 committed by GitHub
parent 041ceda95e
commit 94ab27bcbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 20 deletions

View File

@ -1,15 +1,9 @@
(ns status-im.contexts.profile.settings.header.style
(:require [quo.foundations.colors :as colors]))
(defn header-view
[customization-color theme]
{:background-color (colors/resolve-color customization-color theme 40)
:min-height 100
:flex 1})
(def avatar-row-wrapper
{:display :flex
:padding-left 16
:padding-left 20
:padding-right 12
:margin-top -60
:margin-bottom -4
@ -17,10 +11,6 @@
:justify-content :space-between
:flex-direction :row})
(def title-container
{:padding-horizontal 20
:padding-vertical 12})
(defn header-middle-shape
[background-color]
{:background-color background-color

View File

@ -1,6 +1,5 @@
(ns status-im.contexts.profile.settings.header.view
(:require [clojure.string :as string]
[quo.core :as quo]
(:require [quo.core :as quo]
[quo.foundations.colors :as colors]
[quo.theme]
[react-native.core :as rn]
@ -15,6 +14,7 @@
(defn view
[{:keys [scroll-y]}]
(let [theme (quo.theme/use-theme)
app-theme (rf/sub [:theme])
{:keys [public-key emoji-hash bio] :as profile} (rf/sub [:profile/profile-with-image])
online? (rf/sub [:visibility-status-updates/online?
public-key])
@ -24,9 +24,8 @@
customization-color (rf/sub [:profile/customization-color])
full-name (profile.utils/displayed-name profile)
profile-picture (profile.utils/photo profile)
emoji-string (string/join emoji-hash)
{:keys [status-title status-icon]} (header.utils/visibility-status-type-data status)
border-theme theme]
border-theme app-theme]
[:<>
[header.shape/view
{:scroll-y scroll-y
@ -55,9 +54,8 @@
:theme :dark
:content (fn [] [visibility-sheet/view])}])}
status-title]]]
[quo/text-combinations
[quo/page-top
{:title-accessibility-label :username
:container-style style/title-container
:emoji-hash emoji-string
:emoji-dash emoji-hash
:description bio
:title full-name}]]))

View File

@ -111,7 +111,9 @@
:image-props :i/light})]
[{:title (i18n/label :t/about)
:on-press #(rf/dispatch [:open-modal :about-app])
:action :arrow}
:action :arrow
:blur? true}
{:title (i18n/label :t/status-help)
:on-press #(rf/dispatch [:open-modal :help-center])
:action :arrow}]])
:action :arrow
:blur? true}]])