AquaStream/app/src/main/res/layout/empty_layout.xml

18 lines
885 B
XML
Raw Normal View History

2022-01-07 19:27:25 +00:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-01-29 18:57:19 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2022-01-07 19:27:25 +00:00
android:layout_width="match_parent"
2022-01-29 18:57:19 +00:00
android:layout_height="match_parent">
2022-01-07 19:27:25 +00:00
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:defaultNavHost="true"
app:navGraph="@navigation/mobile_navigation"
app:layout_constraintWidth="match_parent"
app:layout_constraintHeight="match_parent"
app:layout_constraintStart_toEndOf="parent"
2022-01-29 18:57:19 +00:00
app:layout_constraintTop_toBottomOf="parent" />
2022-01-07 19:27:25 +00:00
</androidx.constraintlayout.widget.ConstraintLayout>