Skip to content

Instantly share code, notes, and snippets.

@ricknout
Created July 31, 2020 14:09
Show Gist options
  • Save ricknout/6f9250ab799fca552bfd51e7f0acce4a to your computer and use it in GitHub Desktop.
Save ricknout/6f9250ab799fca552bfd51e7f0acce4a to your computer and use it in GitHub Desktop.
MDC-Android shape overlays
<!-- Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0 -->
<!-- In bottomsheet/res/values/styles.xml -->
<style name="Widget.MaterialComponents.BottomSheet" parent="...">
...
<item name="shapeAppearance">?attr/shapeAppearanceLargeComponent</item>
<item name="shapeAppearanceOverlay">@style/ShapeAppearanceOverlay.MaterialComponents.BottomSheet</item>
</selector>
<style name="ShapeAppearanceOverlay.MaterialComponents.BottomSheet" parent="">
<item name="cornerSizeBottomRight">0dp</item>
<item name="cornerSizeBottomLeft">0dp</item>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment