Lacerta/app/src/main/res/layout/activity_main.xml

16 lines
776 B
XML
Raw Normal View History

2023-12-07 01:36:00 +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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
2023-12-09 01:06:42 +00:00
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_nav"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
2023-12-07 01:36:00 +00:00
app:layout_constraintEnd_toEndOf="parent"
2023-12-09 01:06:42 +00:00
app:layout_constraintStart_toStartOf="parent" />
2023-12-07 01:36:00 +00:00
</androidx.constraintlayout.widget.ConstraintLayout>