Implement new group creation screens behind flag.

This commit is contained in:
Alex Hart
2020-05-13 13:41:36 -03:00
parent ed0825112d
commit ccff7b1148
42 changed files with 1422 additions and 84 deletions

View File

@@ -0,0 +1,21 @@
<?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/create_group"
app:startDestination="@id/addGroupDetailsFragment">
<fragment
android:id="@+id/addGroupDetailsFragment"
android:name="org.thoughtcrime.securesms.groups.ui.creategroup.details.AddGroupDetailsFragment"
android:label="add_group_details_fragment"
tools:layout="@layout/add_group_details_fragment">
<argument
android:name="recipient_ids"
app:argType="org.thoughtcrime.securesms.recipients.RecipientId[]"
app:nullable="false" />
</fragment>
</navigation>