-
Notifications
You must be signed in to change notification settings - Fork 985
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75ff916
commit 031be1d
Showing
4 changed files
with
25 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
(ns status-im.contexts.wallet.sheets.buy-token.style) | ||
|
||
(def list-container | ||
{:padding-horizontal 8 | ||
:padding-bottom 8}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
(ns status-im.contexts.wallet.sheets.buy-token.view | ||
(:require [quo.core :as quo] | ||
[react-native.core :as rn] | ||
[status-im.contexts.wallet.common.temp :as temp] | ||
[status-im.contexts.wallet.sheets.buy-token.style :as style] | ||
[utils.i18n :as i18n])) | ||
|
||
(defn view | ||
[] | ||
[:<> | ||
[quo/drawer-top {:title (i18n/label :t/buy-tokens)}] | ||
[rn/flat-list | ||
{:data temp/buy-tokens-list | ||
:style style/list-container | ||
:render-fn quo/settings-item}]]) |