Increase rounded corner radius for messages

This commit is contained in:
Naveen 2022-11-18 01:29:16 +05:30
parent 417a37bbb4
commit 9fbf6fa581
2 changed files with 8 additions and 6 deletions

View File

@ -3,9 +3,10 @@
android:shape="rectangle">
<corners
android:bottomRightRadius="@dimen/normal_margin"
android:topLeftRadius="@dimen/normal_margin"
android:topRightRadius="@dimen/normal_margin" />
android:bottomLeftRadius="@dimen/small_margin"
android:bottomRightRadius="@dimen/big_margin"
android:topLeftRadius="@dimen/big_margin"
android:topRightRadius="@dimen/big_margin" />
<solid android:color="@color/activated_item_foreground" />

View File

@ -3,9 +3,10 @@
android:shape="rectangle">
<corners
android:bottomLeftRadius="@dimen/normal_margin"
android:topLeftRadius="@dimen/normal_margin"
android:topRightRadius="@dimen/normal_margin" />
android:bottomLeftRadius="@dimen/big_margin"
android:bottomRightRadius="@dimen/small_margin"
android:topLeftRadius="@dimen/big_margin"
android:topRightRadius="@dimen/big_margin" />
<solid android:color="@color/color_primary" />