This repository has been archived on 2020-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
hashTagItNow/app/src/main/res/navigation/mobile_navigation.xml

24 lines
934 B
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/mobile_navigation" app:startDestination="@id/splashFragment">
<fragment android:id="@+id/splashFragment"
android:name="abdulla.com.hashtagit.InputFragment"
android:label="SplashFragment">
<action android:id="@+id/action_splashFragment_to_submissionFragment"
app:destination="@id/submissionFragment">
</action>
</fragment>
<fragment android:id="@+id/submissionFragment"
android:name="abdulla.com.hashtagit.SubmissionFragment"
android:label="SubmissionFragment">
<argument android:name="writtenText"
app:argType="string"
android:defaultValue="May-Ling"/>
</fragment>
</navigation>