We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17e208 commit e0b6a27Copy full SHA for e0b6a27
lib/java/com/google/android/material/shape/ShapeAppearanceModel.java
@@ -536,7 +536,11 @@ private static Builder builder(
536
context.getTheme().applyStyle(shapeAppearanceOverlayResId, /* force= */ true);
537
}
538
TypedArray a = context.obtainStyledAttributes(R.styleable.ShapeAppearance);
539
+ return builder(a, defaultCornerSize);
540
+ }
541
542
+ @NonNull
543
+ private static Builder builder(TypedArray a, @NonNull CornerSize defaultCornerSize) {
544
try {
545
int cornerFamily = a.getInt(R.styleable.ShapeAppearance_cornerFamily, CornerFamily.ROUNDED);
546
int cornerFamilyTopLeft =
0 commit comments