Created
May 26, 2020 08:35
-
-
Save pennya/8814e65703f58f71efa969e554bc8156 to your computer and use it in GitHub Desktop.
BottomSheet Shadow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item> | |
<shape android:shape="rectangle"> | |
<gradient | |
android:startColor="#66000000" | |
android:centerColor="#33000000" | |
android:centerY="0.2" | |
android:endColor="@android:color/transparent" | |
android:angle="90" /> | |
<corners android:topLeftRadius="8dp" android:topRightRadius="8dp" /> | |
<padding android:top="5dp"/> | |
</shape> | |
</item> | |
<item> | |
<shape android:shape="rectangle"> | |
<solid android:color="#ffffff" /> | |
<corners android:topLeftRadius="10dp" android:topRightRadius="10dp" /> | |
</shape> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment