Created
July 31, 2020 14:09
-
-
Save ricknout/6f9250ab799fca552bfd51e7f0acce4a to your computer and use it in GitHub Desktop.
MDC-Android shape overlays
This file contains hidden or 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
<!-- 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