fix background of bottom tab bar (#4791)
`TabLayout` with Material 3 styling has a thin line at the bottom. That makes sense when it is above the scrollable content, but not when it is below. Before:  After: 
This commit is contained in:
parent
dcafc88e3d
commit
eb83cb7d17
1 changed files with 2 additions and 1 deletions
|
|
@ -33,9 +33,9 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="48dp"
|
||||
android:orientation="horizontal"
|
||||
app:contentInsetStart="0dp"
|
||||
android:paddingLeft="0dp"
|
||||
android:paddingRight="0dp"
|
||||
app:contentInsetStart="0dp"
|
||||
app:contentInsetStartWithNavigation="0dp"
|
||||
app:navigationContentDescription="@string/action_open_drawer">
|
||||
|
||||
|
|
@ -78,6 +78,7 @@
|
|||
style="@style/TuskyTabAppearance"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?attr/actionBarSize"
|
||||
android:background="?attr/colorSurface"
|
||||
app:tabGravity="fill"
|
||||
app:tabIndicatorGravity="top"
|
||||
app:tabMode="scrollable"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue