POZO_Retail/app/build/intermediates/merged-not-compiled-resources/release/drawable/rounded_shadow.xml

20 lines
670 B
XML
Raw Normal View History

2025-08-26 13:45:32 +05:30
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:right="2dp" android:left="2dp" android:top="2dp" android:bottom="4dp">
<shape android:shape="rectangle">
<solid android:color="#B4B4B4" /> <!-- Semi-transparent black shadow -->
<corners android:radius="12dp" />
</shape>
</item>
<!-- Foreground with background color -->
<item>
<shape android:shape="rectangle">
<solid android:color="#F2F2F2" /> <!-- Light grey background -->
<corners android:radius="12dp" />
</shape>
</item>
</layer-list>