File tree 8 files changed +13
-12
lines changed
components/graph/wallet_graph
status_im2/contexts/wallet
8 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -765,7 +765,7 @@ SPEC CHECKSUMS:
765
765
RNLanguages: 962e562af0d34ab1958d89bcfdb64fafc37c513e
766
766
RNPermissions: ad71dd4f767ec254f2cd57592fbee02afee75467
767
767
RNReactNativeHapticFeedback: 2566b468cc8d0e7bb2f84b23adc0f4614594d071
768
- RNReanimated: 06a228c5a245ef7b5b03f0efc29d76ce4db9031c
768
+ RNReanimated: 42f56dc5c032a11177b9ea12cdb57285318b432e
769
769
RNShare: d82e10f6b7677f4b0048c23709bd04098d5aee6c
770
770
RNStaticSafeAreaInsets: 055ddbf5e476321720457cdaeec0ff2ba40ec1b8
771
771
RNSVG: 80584470ff1ffc7994923ea135a3e5ad825546b9
Original file line number Diff line number Diff line change 2
2
(:require
3
3
[quo.components.graph.utils :as utils]
4
4
[quo.components.graph.wallet-graph.style :as style]
5
- [quo.components.markdown.text :as text]
6
5
[quo.foundations.colors :as colors]
7
6
[quo.foundations.resources :as resources]
8
7
[quo.theme :as quo.theme]
Original file line number Diff line number Diff line change 5
5
:keycard-chip-light (js/require " ../resources/images/ui2/keycard-chip-light.png" )
6
6
:keycard-chip-dark (js/require " ../resources/images/ui2/keycard-chip-dark.png" )
7
7
:keycard-watermark (js/require " ../resources/images/ui2/keycard-watermark.png" )
8
- :bored-ape (js/require " ../resources/images/mock2/bored-ape.png" )
9
- :no-funds
8
+ :bored-ape (js/require " ../resources/images/mock2/bored-ape.png" )})
9
+
10
+ (def ui-themed
11
+ {:no-funds
10
12
{:light (js/require " ../resources/images/ui2/no-funds-light.png" )
11
13
:dark (js/require " ../resources/images/ui2/no-funds-dark.png" )}})
12
14
13
15
(defn get-themed-image
14
16
[k theme]
15
- (get-in ui [k theme]))
17
+ (get-in ui-themed [k theme]))
16
18
17
19
(defn get-image
18
20
[k]
Original file line number Diff line number Diff line change 6
6
[status-im2.common.resources :as resources]
7
7
[status-im2.contexts.wallet.account.tabs.dapps.style :as style]
8
8
[status-im2.contexts.wallet.common.empty-tab.view :as empty-tab]
9
- [status-im2.contexts.wallet.common.temp :as temp]
10
- [utils.i18n :as i18n]
11
- [utils.re-frame :as rf]))
9
+ [utils.i18n :as i18n]))
12
10
13
11
(defn dapp-options
14
12
[]
Original file line number Diff line number Diff line change 1
1
(ns status-im2.contexts.wallet.account.tabs.view
2
2
(:require
3
+ [quo.theme]
3
4
[react-native.core :as rn]
4
5
[status-im2.common.resources :as resources]
5
6
[status-im2.contexts.wallet.account.tabs.about.view :as about]
24
25
{:title (i18n/label :t/no-permissions )
25
26
:description (i18n/label :t/no-collectibles-description )
26
27
:image (resources/get-image
27
- (quo.theme/theme-value :no-permissions-light :no-permissions-dark theme))}]
28
+ (quo.theme/theme-value :no-permissions-light
29
+ :no-permissions-dark
30
+ theme))}]
28
31
:dapps [dapps/view]
29
32
[about/view]))
30
33
Original file line number Diff line number Diff line change 25
25
[{:id :assets :label (i18n/label :t/assets ) :accessibility-label :assets-tab }
26
26
{:id :collectibles :label (i18n/label :t/collectibles ) :accessibility-label :collectibles-tab }
27
27
{:id :activity :label (i18n/label :t/activity ) :accessibility-label :activity-tab }
28
- ; ; Disabled for new wallet MVP
29
- ; {:id :permissions :label (i18n/label :t/permissions) :accessibility-label :permissions}
30
28
{:id :dapps :label (i18n/label :t/dapps ) :accessibility-label :dapps }
31
29
{:id :about :label (i18n/label :t/about ) :accessibility-label :about }])
32
30
Original file line number Diff line number Diff line change 1
1
(ns status-im2.contexts.wallet.common.activity-tab.view
2
2
(:require
3
3
[quo.core :as quo]
4
+ [quo.theme]
4
5
[react-native.core :as rn]
5
6
[status-im2.common.resources :as resources]
6
7
[status-im2.contexts.wallet.common.empty-tab.view :as empty-tab]
7
- [status-im2.contexts.wallet.common.temp :as temp]
8
8
[utils.i18n :as i18n]))
9
9
10
10
(defn activity-item
Original file line number Diff line number Diff line change 1
1
(ns status-im2.contexts.wallet.common.collectibles-tab.view
2
2
(:require
3
3
[quo.core :as quo]
4
+ [quo.theme]
4
5
[react-native.core :as rn]
5
6
[status-im2.common.resources :as resources]
6
7
[status-im2.contexts.wallet.common.empty-tab.view :as empty-tab]
You can’t perform that action at this time.
0 commit comments