2020-11-20 15:38:08 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-08-27 16:09:56 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-11-20 15:38:08 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2023-05-06 19:27:14 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_width="match_parent"
|
2023-05-06 19:27:14 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
tools:context=".ui.fragment.HomeFragment">
|
2020-11-20 15:38:08 +01:00
|
|
|
|
2023-07-01 18:11:44 +02:00
|
|
|
<fragment
|
|
|
|
|
android:id="@+id/toolbar_fragment"
|
|
|
|
|
android:name="com.cappielloantonio.tempo.ui.fragment.ToolbarFragment"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:layout_width="match_parent"
|
2023-07-01 18:11:44 +02:00
|
|
|
android:layout_height="wrap_content" />
|
2022-02-05 18:39:17 +01:00
|
|
|
|
2023-05-06 19:27:14 +02:00
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
|
|
|
android:id="@+id/homeViewPager"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2022-02-05 18:39:17 +01:00
|
|
|
|
2021-08-27 16:09:56 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2020-11-20 15:38:08 +01:00
|
|
|
|