2017-08-08 16:37:15 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-12-20 16:12:22 -04:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-02-13 11:52:55 -08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2019-12-20 16:12:22 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".profiles.edit.EditProfileActivity">
|
2017-10-01 18:11:42 -07:00
|
|
|
|
2019-12-20 16:12:22 -04:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/nav_host_fragment"
|
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
2017-08-08 16:37:15 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-12-20 16:12:22 -04:00
|
|
|
app:defaultNavHost="true"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:navGraph="@navigation/edit_profile" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|