diff options
author | Torsten Grote <t@grobox.de> | 2020-04-03 14:04:22 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2020-04-03 14:04:22 -0300 |
commit | bee652834f90fd8abd46b5adcf30adcc587984c2 (patch) | |
tree | 75c66b3ff5c3160ec063cf33d16400a69823a483 /wallet/src/main/res/navigation | |
parent | e52ee8f55326de402a7ad421c396eb6c81a79a68 (diff) | |
download | taler-android-bee652834f90fd8abd46b5adcf30adcc587984c2.tar.gz taler-android-bee652834f90fd8abd46b5adcf30adcc587984c2.tar.bz2 taler-android-bee652834f90fd8abd46b5adcf30adcc587984c2.zip |
[wallet] add detail page for withdrawal event in history
Also make history accessible by tapping the balance
Diffstat (limited to 'wallet/src/main/res/navigation')
-rw-r--r-- | wallet/src/main/res/navigation/nav_graph.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/wallet/src/main/res/navigation/nav_graph.xml b/wallet/src/main/res/navigation/nav_graph.xml index 9875b8a..1ab9666 100644 --- a/wallet/src/main/res/navigation/nav_graph.xml +++ b/wallet/src/main/res/navigation/nav_graph.xml @@ -57,11 +57,23 @@ android:name="net.taler.wallet.Settings" android:label="Settings" tools:layout="@layout/fragment_settings" /> + <fragment android:id="@+id/walletHistory" android:name="net.taler.wallet.history.HistoryFragment" android:label="@string/history_title" - tools:layout="@layout/fragment_show_history" /> + tools:layout="@layout/fragment_show_history"> + <action + android:id="@+id/action_walletHistory_to_historyEventFragment" + app:destination="@id/historyEventFragment" /> + </fragment> + + <fragment + android:id="@+id/historyEventFragment" + android:name="net.taler.wallet.history.HistoryEventFragment" + android:label="@string/history_detail_title" + tools:layout="@layout/fragment_history_event" /> + <fragment android:id="@+id/alreadyPaid" android:name="net.taler.wallet.payment.AlreadyPaidFragment" |