diff options
author | Torsten Grote <t@grobox.de> | 2020-06-22 14:58:18 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2020-06-22 14:58:47 -0300 |
commit | 98d693d48ad491b19d89e5d394c2e54a36731728 (patch) | |
tree | 7d99fd01c6d681abd6314cfb0b202c436690d0c2 /wallet/src/main/res/navigation | |
parent | a9b2ec4f35851c26bbe4f62a2e7fa17d9ee79576 (diff) | |
download | taler-android-98d693d48ad491b19d89e5d394c2e54a36731728.tar.gz taler-android-98d693d48ad491b19d89e5d394c2e54a36731728.tar.bz2 taler-android-98d693d48ad491b19d89e5d394c2e54a36731728.zip |
[wallet] Improve Anastasis UI mockup
Diffstat (limited to 'wallet/src/main/res/navigation')
-rw-r--r-- | wallet/src/main/res/navigation/nav_graph.xml | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/wallet/src/main/res/navigation/nav_graph.xml b/wallet/src/main/res/navigation/nav_graph.xml index bcfbe51..7ce7b02 100644 --- a/wallet/src/main/res/navigation/nav_graph.xml +++ b/wallet/src/main/res/navigation/nav_graph.xml @@ -108,7 +108,33 @@ android:id="@+id/nav_anastasis_authentication" android:name="net.taler.wallet.settings.AnastasisAuthenticationFragment" android:label="Choose authentication methods" - tools:layout="@layout/fragment_anastasis_authentication"/> + tools:layout="@layout/fragment_anastasis_authentication"> + <action + android:id="@+id/action_nav_anastasis_authentication_to_securityQuestionFragment" + app:destination="@id/securityQuestionFragment" /> + <action + android:id="@+id/action_nav_anastasis_authentication_to_smsFragment" + app:destination="@id/smsFragment" /> + <action + android:id="@+id/action_nav_anastasis_authentication_to_videoFragment" + app:destination="@id/videoFragment" /> + </fragment> + + <fragment + android:id="@+id/securityQuestionFragment" + android:name="net.taler.wallet.settings.SecurityQuestionFragment" + android:label="Security question" + tools:layout="@layout/fragment_security_question" /> + <fragment + android:id="@+id/smsFragment" + android:name="net.taler.wallet.settings.SmsFragment" + android:label="SMS" + tools:layout="@layout/fragment_sms" /> + <fragment + android:id="@+id/videoFragment" + android:name="net.taler.wallet.settings.VideoFragment" + android:label="Video identification" + tools:layout="@layout/fragment_video" /> <fragment android:id="@+id/nav_transactions" |