diff options
Diffstat (limited to 'wallet/src/main/res/navigation')
-rw-r--r-- | wallet/src/main/res/navigation/nav_graph.xml | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/wallet/src/main/res/navigation/nav_graph.xml b/wallet/src/main/res/navigation/nav_graph.xml index d4257b9..f8927a6 100644 --- a/wallet/src/main/res/navigation/nav_graph.xml +++ b/wallet/src/main/res/navigation/nav_graph.xml @@ -55,23 +55,22 @@ <fragment android:id="@+id/settings" android:name="net.taler.wallet.SettingsFragment" - android:label="Settings" - tools:layout="@layout/fragment_settings" /> + android:label="Settings" /> <fragment - android:id="@+id/walletHistory" - android:name="net.taler.wallet.history.HistoryFragment" - android:label="@string/history_title" - tools:layout="@layout/fragment_show_history"> + android:id="@+id/nav_transactions" + android:name="net.taler.wallet.transactions.TransactionsFragment" + android:label="@string/transactions_title" + tools:layout="@layout/fragment_transactions"> <action - android:id="@+id/action_walletHistory_to_historyEventFragment" - app:destination="@id/historyEventFragment" /> + android:id="@+id/action_nav_transactions_to_nav_transaction_detail" + app:destination="@id/nav_transactions_detail" /> </fragment> <fragment - android:id="@+id/historyEventFragment" - android:name="net.taler.wallet.history.HistoryEventFragment" - android:label="@string/history_detail_title" + android:id="@+id/nav_transactions_detail" + android:name="net.taler.wallet.transactions.TransactionDetailFragment" + android:label="@string/transactions_detail_title" tools:layout="@layout/fragment_event_withdraw" /> <fragment |