Add comments fragment to dm navigation. Fixes https://github.com/austinhuang0131/barinsta/issues/276

This commit is contained in:
Ammar Githam 2020-11-19 01:01:26 +09:00
parent 2f957da290
commit 046152e30c
1 changed files with 19 additions and 0 deletions

View File

@ -44,6 +44,25 @@
android:id="@+id/action_global_notificationsViewerFragment"
app:destination="@id/notification_viewer_nav_graph" />
<include app:graph="@navigation/comments_nav_graph" />
<action
android:id="@+id/action_global_commentsViewerFragment"
app:destination="@id/comments_nav_graph">
<argument
android:name="shortCode"
app:argType="string"
app:nullable="false" />
<argument
android:name="postId"
app:argType="string"
app:nullable="false" />
<argument
android:name="postUserId"
app:argType="string"
app:nullable="false" />
</action>
<fragment
android:id="@+id/directMessagesInboxFragment"
android:name="awais.instagrabber.fragments.directmessages.DirectMessageInboxFragment"