Files
fast-messenger/app/src/main/res/navigation/messages.xml
T
2021-09-12 23:35:23 +03:00

26 lines
961 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"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/messages"
app:startDestination="@+id/conversationsFragment">
<fragment
android:id="@+id/conversationsFragment"
android:name="com.meloda.fast.screens.conversations.ConversationsFragment"
android:label="ConversationsFragment"
tools:layout="@layout/fragment_conversations">
<action
android:id="@+id/toMessagesHistory"
app:destination="@+id/messagesHistoryFragment" />
</fragment>
<fragment
android:id="@+id/messagesHistoryFragment"
android:name="com.meloda.fast.screens.messages.MessagesHistoryFragment"
android:label="MessagesHistoryFragment"
tools:layout="@layout/fragment_messages_history" />
</navigation>