Add transparency to the compose bar when wallpaper is present.

This commit is contained in:
Greyson Parrelli
2021-02-05 16:18:21 -05:00
committed by GitHub
parent 133a7d2576
commit 8f86de1764
13 changed files with 140 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners android:radius="4dp" />
<solid android:color="@color/core_white"/>
</shape>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="1dp"
android:color="@color/core_grey_05" />
<solid
android:color="@color/conversation_item_wallpaper_bubble_color" />
<corners
android:radius="20dp" />
</shape>