Use mirrored drawables in RTL layouts

See https://github.com/FossifyOrg/Messages/issues/279
This commit is contained in:
Naveen Singh 2025-02-02 07:52:59 +05:30
parent ddc0e8aa3c
commit aca6e44355
No known key found for this signature in database
GPG key ID: AF5D43C216778C0B
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:bottomLeftRadius="@dimen/big_margin"
android:bottomRightRadius="@dimen/small_margin"
android:topLeftRadius="@dimen/big_margin"
android:topRightRadius="@dimen/big_margin" />
<solid android:color="@color/activated_item_foreground" />
</shape>

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:bottomLeftRadius="@dimen/small_margin"
android:bottomRightRadius="@dimen/big_margin"
android:topLeftRadius="@dimen/big_margin"
android:topRightRadius="@dimen/big_margin" />
<solid android:color="@color/color_primary" />
</shape>