Created
July 31, 2020 13:55
-
-
Save ricknout/22929e298c5b53b3b7683ea929782bf6 to your computer and use it in GitHub Desktop.
MDC-Android shape resources
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 res/values/shape.xml --> | |
<style name="ShapeAppearance.App.SmallComponent" parent="ShapeAppearance.MaterialComponents.SmallComponent"> | |
<item name="cornerFamily">cut</item> | |
<item name="cornerSize">4dp</item> | |
... | |
</style> | |
<style name="ShapeAppearance.App.MediumComponent" parent="ShapeAppearance.MaterialComponents.MediumComponent"> | |
<item name="cornerFamily">cut</item> | |
<item name="cornerSize">6dp</item> | |
... | |
</style> | |
<style name="ShapeAppearance.App.LargeComponent" parent="ShapeAppearance.MaterialComponents.LargeComponent"> | |
<item name="cornerFamily">cut</item> | |
<item name="cornerSize">0dp</item> | |
... | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment