46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/login_nav"
|
|
app:startDestination="@id/bankSelectionFragment">
|
|
|
|
<fragment
|
|
android:id="@+id/bankSelectionFragment"
|
|
android:name="sh.sar.basedbank.ui.login.BankSelectionFragment"
|
|
android:label="Select Bank">
|
|
|
|
<action
|
|
android:id="@+id/action_bankSelection_to_credentials"
|
|
app:destination="@id/credentialsFragment"
|
|
app:enterAnim="@anim/slide_in_right"
|
|
app:exitAnim="@anim/slide_out_left"
|
|
app:popEnterAnim="@anim/slide_in_left"
|
|
app:popExitAnim="@anim/slide_out_right" />
|
|
|
|
<action
|
|
android:id="@+id/action_bankSelection_to_credentials_bml"
|
|
app:destination="@id/credentialsFragment"
|
|
app:enterAnim="@anim/slide_in_right"
|
|
app:exitAnim="@anim/slide_out_left"
|
|
app:popEnterAnim="@anim/slide_in_left"
|
|
app:popExitAnim="@anim/slide_out_right">
|
|
<argument
|
|
android:name="bankType"
|
|
app:argType="string"
|
|
android:defaultValue="MIB" />
|
|
</action>
|
|
|
|
</fragment>
|
|
|
|
<fragment
|
|
android:id="@+id/credentialsFragment"
|
|
android:name="sh.sar.basedbank.ui.login.CredentialsFragment"
|
|
android:label="Sign In">
|
|
<argument
|
|
android:name="bankType"
|
|
app:argType="string"
|
|
android:defaultValue="MIB" />
|
|
</fragment>
|
|
|
|
</navigation>
|