Skip to content

Instantly share code, notes, and snippets.

@pennya
Created May 26, 2020 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pennya/8814e65703f58f71efa969e554bc8156 to your computer and use it in GitHub Desktop.
Save pennya/8814e65703f58f71efa969e554bc8156 to your computer and use it in GitHub Desktop.
BottomSheet Shadow
<?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