This commit is contained in:
2026-06-09 17:12:07 +01:00
parent 31a7cbb2df
commit d192568ed8
5 changed files with 81 additions and 121 deletions

View File

@@ -14,7 +14,28 @@
<!-- Typography base generic configuration -->
<item name="android:fontFamily">sans-serif</item>
<!-- Modern Shape Appearance (Rounded Corners) -->
<item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.App.SmallComponent</item>
<item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.App.MediumComponent</item>
<item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.App.LargeComponent</item>
</style>
<style name="Theme.Pap_teste" parent="Base.Theme.Pap_teste" />
<!-- Shape Styles -->
<style name="ShapeAppearance.App.SmallComponent" parent="ShapeAppearance.Material3.SmallComponent">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">12dp</item>
</style>
<style name="ShapeAppearance.App.MediumComponent" parent="ShapeAppearance.Material3.MediumComponent">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">16dp</item>
</style>
<style name="ShapeAppearance.App.LargeComponent" parent="ShapeAppearance.Material3.LargeComponent">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">24dp</item>
</style>
</resources>