SPDX-License-Identifier: GPL-3.0-or-later
-->
-<TabView androidTabsPosition="bottom">
+<TabView
+ androidTabsPosition="bottom"
+ selectedIndex="2"
+ >
<TabViewItem title="Exchange">
<Frame defaultPage="exchange/exchange-page" />
</TabViewItem>
xmlns="http://schemas.nativescript.org/tns.xsd"
>
<ActionBar>
- <Label text="Search" />
+ <Label text="Exchange" />
</ActionBar>
<GridLayout class="page__content">
<Label
/>
<Label
class="page__content-placeholder"
- text="-- Search page content goes here --"
+ text="-- Exchange page content goes here --"
/>
</GridLayout>
</Page>
const tappedItem = <Item>view.bindingContext
page.frame.navigate({
- moduleName: 'home/home-item-detail/home-item-detail-page',
+ moduleName: 'history/history-item-detail/history-item-detail-page',
context: tappedItem,
animated: true,
transition: {
xmlns="http://schemas.nativescript.org/tns.xsd"
>
<ActionBar>
- <Label text="Home" />
+ <Label text="Transaction History" />
</ActionBar>
+ <GridLayout columns="*,*">
+ <ListPicker
+ column="0"
+ items="{{ wallets }}" />
+ <ListPicker
+ column="1"
+ items="{{ wallet.accounts }}" />
+ </GridLayout>
<ListView
items="{{ items }}"
itemTap="onItemTap"
const tappedItem = <Item>view.bindingContext
page.frame.navigate({
- moduleName: 'home/home-item-detail/home-item-detail-page',
+ moduleName: 'rolodex/rolodex-item-detail/rolodex-item-detail-page',
context: tappedItem,
animated: true,
transition: {
xmlns="http://schemas.nativescript.org/tns.xsd"
>
<ActionBar>
- <Label text="Home" />
+ <Label text="Rolodex" />
</ActionBar>
<ListView
items="{{ items }}"
xmlns="http://schemas.nativescript.org/tns.xsd"
>
<ActionBar>
- <Label text="Search" />
+ <Label text="Settings" />
</ActionBar>
<GridLayout class="page__content">
<Label
/>
<Label
class="page__content-placeholder"
- text="-- Search page content goes here --"
+ text="-- Settings go here --"
/>
</GridLayout>
</Page>
xmlns="http://schemas.nativescript.org/tns.xsd"
>
<ActionBar>
- <Label text="Browse" />
+ <Label text="Transact" />
</ActionBar>
<GridLayout class="page__content">
<Label
/>
<Label
class="page__content-placeholder"
- text="-- Browse page content goes here --"
+ text="-- Transact page content goes here --"
/>
</GridLayout>
</Page>