Files
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

57 lines
2.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright 2022 Dash Core Group.
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nav_quick_receive"
app:startDestination="@id/paymentsReceiveFragment">
<fragment
android:id="@+id/paymentsReceiveFragment"
android:name="de.schildbach.wallet.ui.payments.PaymentsReceiveFragment"
android:label="PaymentsReceiveFragment"
tools:layout="@layout/fragment_payments_receive">
<argument
android:name="showImportPrivateKey"
android:defaultValue="false"
app:argType="boolean" />
<argument
android:name="centerVertically"
android:defaultValue="true"
app:argType="boolean" />
<argument
android:name="fromQuickReceive"
android:defaultValue="true"
app:argType="boolean" />
<action
android:id="@+id/payments_to_receive"
app:destination="@id/receiveFragment"
app:enterAnim="@anim/slide_in_bottom"
app:popExitAnim="@anim/fade_out" />
</fragment>
<fragment
android:id="@+id/receiveFragment"
android:name="de.schildbach.wallet.ui.payments.ReceiveFragment"
android:label="Receive"
tools:layout="@layout/fragment_receive"/>
</navigation>