Fix some UI warnings

This commit is contained in:
Roman Volosovskyi 2020-09-25 12:59:55 +03:00
parent abe6e97728
commit b5f7a62b14
No known key found for this signature in database
GPG Key ID: 0238A4B5ECEE70DE
3 changed files with 18 additions and 17 deletions

View File

@ -255,13 +255,14 @@
[rn/view {:style {:flex-direction :row
:justify-content :center}}
[rn/view {:style (styles/home-tokens-icons (count tokens))}
(for [[{name :name
{source :source} :icon} _ i] tokens]
^{:key name}
[rn/view {:style (styles/home-token-icon-style i)}
[rn/image {:source (if (fn? source) (source) source)
:style {:width 20
:height 20}}]])]
(doall
(for [[{name :name
{source :source} :icon} _ i] tokens]
^{:key name}
[rn/view {:style (styles/home-token-icon-style i)}
[rn/image {:source (if (fn? source) (source) source)
:style {:width 20
:height 20}}]]))]
[quo/text {:align :center}
(i18n/label :t/invite-reward)]])]])))

View File

@ -46,7 +46,7 @@
[react/view styles/multiaccounts-container
[list/flat-list {:data (vals multiaccounts)
:contentContainerStyle styles/multiaccounts-list-container
:key-fn :address
:key-fn (comp str :address)
:render-fn multiaccount-view}]]
[toolbar/toolbar
{:show-border? true

View File

@ -195,16 +195,16 @@
:subtitle second-name})}
[react/view {:padding-top 12}
(for [{:keys [label subtext accessibility-label icon action disabled?]} (actions contact)]
(for [{:keys [label subtext accessibility-label icon action disabled?]} (actions contact)
:when label]
^{:key label}
(when label
[quo/list-item {:theme :accent
:title label
:subtitle subtext
:icon icon
:accessibility-label accessibility-label
:disabled disabled?
:on-press action}]))]
[quo/list-item {:theme :accent
:title label
:subtitle subtext
:icon icon
:accessibility-label accessibility-label
:disabled disabled?
:on-press action}])]
[react/view styles/contact-profile-details-container
[profile-details contact]
[chat-settings contact]]