isolaatti-android/app/src/main/res/layout/activity_settings.xml

19 lines
884 B
XML
Raw Normal View History

2023-02-11 23:41:23 -06:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.fragment.app.FragmentContainerView
android:id="@+id/settings_fragment_container"
2023-07-08 02:17:19 -06:00
android:name="androidx.navigation.fragment.NavHostFragment"
2023-02-11 23:41:23 -06:00
android:layout_width="0dp"
android:layout_height="0dp"
app:defaultNavHost="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navGraph="@navigation/settings_navigation"/>
</androidx.constraintlayout.widget.ConstraintLayout>