Skip to content

Instantly share code, notes, and snippets.

@ricknout
Created July 31, 2020 13:55
Show Gist options
  • Save ricknout/22929e298c5b53b3b7683ea929782bf6 to your computer and use it in GitHub Desktop.
Save ricknout/22929e298c5b53b3b7683ea929782bf6 to your computer and use it in GitHub Desktop.
MDC-Android shape resources
<!-- 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