parent
460d29c053
commit
d9be5a77b3
|
@ -60,13 +60,13 @@
|
||||||
:custom-content toolbar-title
|
:custom-content toolbar-title
|
||||||
:action {:image {:style icon-search}
|
:action {:image {:style icon-search}
|
||||||
:handler #()}}]
|
:handler #()}}]
|
||||||
|
[view st/accounts-container
|
||||||
[view st/account-list-container
|
[view st/account-list-view-container
|
||||||
[list-view {:dataSource (lw/to-datasource accounts)
|
[list-view {:dataSource (lw/to-datasource accounts)
|
||||||
:enableEmptySections true
|
:enableEmptySections true
|
||||||
:renderRow render-row
|
:renderRow render-row
|
||||||
:renderSeparator render-separator
|
;:renderSeparator render-separator
|
||||||
:style st/account-list}]]
|
:style st/account-list}]]]
|
||||||
[view st/add-account-button-container
|
[view st/add-account-button-container
|
||||||
[touchable-highlight {:on-press create-account}
|
[touchable-highlight {:on-press create-account}
|
||||||
[view st/add-account-button
|
[view st/add-account-button
|
||||||
|
|
|
@ -26,9 +26,14 @@
|
||||||
:left 0
|
:left 0
|
||||||
:justifyContent :center})
|
:justifyContent :center})
|
||||||
|
|
||||||
(def account-list-container
|
(def accounts-container
|
||||||
{:flex 1
|
{:flex 1
|
||||||
:flexDirection :column
|
:flex-direction :column
|
||||||
|
:justifyContent :center
|
||||||
|
:padding-bottom 56})
|
||||||
|
|
||||||
|
(def account-list-view-container
|
||||||
|
{:flexDirection :column
|
||||||
:justifyContent :center})
|
:justifyContent :center})
|
||||||
|
|
||||||
(def account-list
|
(def account-list
|
||||||
|
|
Loading…
Reference in New Issue