diff options
| author | Claude <noreply@anthropic.com> | 2026-04-11 09:56:22 +0000 |
|---|---|---|
| committer | Claude <noreply@anthropic.com> | 2026-04-11 09:56:22 +0000 |
| commit | 7dc7bae441f48a17ee694a80fb3ecbdd2f933b7f (patch) | |
| tree | 5f9684bb0f0fc2e56c8b0626e9a6e2bb4dfbb103 /android-app/app/src | |
| parent | 122e8b7b84df85b1f6a9ed50c6c66273acee911d (diff) | |
Fix: add explicit parent to ShapeAppearance.Nav.BottomSheet
Dot-notation style names imply a parent by convention; AAPT was looking
for ShapeAppearance.Nav which doesn't exist. Parent is now
ShapeAppearance.Material3.Corner.None (all-zero base) with the top
corners overridden to 24dp.
https://claude.ai/code/session_01HXPjBsogsJVRwCiekDGkJX
Diffstat (limited to 'android-app/app/src')
| -rwxr-xr-x | android-app/app/src/main/res/values/themes.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android-app/app/src/main/res/values/themes.xml b/android-app/app/src/main/res/values/themes.xml index a48a721..93f5209 100755 --- a/android-app/app/src/main/res/values/themes.xml +++ b/android-app/app/src/main/res/values/themes.xml @@ -120,7 +120,7 @@ </style> <!-- Bottom sheet top-only rounded corners --> - <style name="ShapeAppearance.Nav.BottomSheet"> + <style name="ShapeAppearance.Nav.BottomSheet" parent="ShapeAppearance.Material3.Corner.None"> <item name="cornerFamily">rounded</item> <item name="cornerSizeTopLeft">24dp</item> <item name="cornerSizeTopRight">24dp</item> |
