Bimba.git

ref: 62e0c1d69f4e7d1d4557870d82cf5fc18af85534

app/src/main/res/layout/fragment_home.xml


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?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"
	android:tag="@string/title_home"
	tools:context=".dashboard.ui.home.HomeFragment">

	<com.mancj.materialsearchbar.MaterialSearchBar
		android:id="@+id/search_bar"
		style="@style/Theme.Bimba.SearchBar"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:layout_marginStart="8dp"
		android:layout_marginTop="8dp"
		android:layout_marginEnd="8dp"
		app:layout_constraintEnd_toEndOf="parent"
		app:layout_constraintStart_toStartOf="parent"
		app:layout_constraintTop_toTopOf="parent"
		app:mt_hint=""
		app:mt_navIconEnabled="true"
		app:mt_placeholder="@string/search_placeholder"
		app:mt_roundedSearchBarEnabled="true" />

	<com.google.android.material.floatingactionbutton.FloatingActionButton
		android:id="@+id/floating_action_button"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_margin="16dp"
		android:contentDescription="@string/home_fab_description"
		android:src="@drawable/ic_gps_black_24dp"
		app:layout_constraintBottom_toBottomOf="parent"
		app:layout_constraintEnd_toEndOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>