Skip to content

Commit 0050ba9

Browse files
Merge tag 'v0.8.0' into develop
v0.8.0
2 parents a16ee7a + 8d1f1ae commit 0050ba9

4 files changed

Lines changed: 7 additions & 2 deletions

File tree

app/src/main/res/values/themes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<item name="colorSecondaryVariant">@color/teal_700</item>
1111
<item name="colorOnSecondary">@color/black</item>
1212
<!-- Status bar color. -->
13-
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
13+
<item name="android:statusBarColor" tools:targetApi="l">#BDBDBD</item>
1414
<!-- Customize your theme here. -->
1515
</style>
1616
</resources>

features/home/src/main/res/layout/fragment_home.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,16 @@
99
<com.google.android.material.appbar.AppBarLayout
1010
android:id="@+id/appbar"
1111
android:layout_width="match_parent"
12+
android:elevation="5dp"
1213
android:layout_height="wrap_content"
1314
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
1415

1516
<com.google.android.material.appbar.MaterialToolbar
1617
android:id="@+id/toolbar"
1718
android:layout_width="match_parent"
18-
android:layout_height="?attr/actionBarSize" />
19+
android:layout_height="?attr/actionBarSize"
20+
android:background="@color/white"
21+
app:titleTextColor="@color/black" />
1922

2023
<com.google.android.material.tabs.TabLayout
2124
android:id="@+id/tabLayout"

features/home/src/main/res/layout/row_property.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
android:layout_width="wrap_content"
138138
android:layout_height="wrap_content"
139139
android:layout_marginStart="8dp"
140+
android:layout_marginBottom="2dp"
140141
android:text="@{item.bedrooms}"
141142
android:textColor="@color/black"
142143
app:layout_constraintBottom_toBottomOf="@id/ivBeds"

features/home/src/main/res/menu/menu_home.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
android:id="@+id/menu_item_sort"
77
android:icon="@drawable/ic_baseline_sort_24"
88
app:showAsAction="always"
9+
app:iconTint="@color/black"
910
android:title="Sort" />
1011
</menu>

0 commit comments

Comments
 (0)