2024-01-20 08:06:28 +00: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"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/main"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".ViewerMainActivity">
|
|
|
|
|
2024-01-20 08:15:39 +00:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/nav_host_fragment"
|
2024-01-21 06:31:06 +00:00
|
|
|
android:name="one.nem.lacerta.component.viewer.ComponentViewerTopFragment"
|
2024-01-20 08:15:39 +00: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"
|
2024-01-21 06:31:06 +00:00
|
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
2024-01-20 08:15:39 +00:00
|
|
|
|
2024-01-20 08:06:28 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|