18 lines
534 B
Java
18 lines
534 B
Java
package com.google.android.material.transformation;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import com.google.android.material.circularreveal.cardview.CircularRevealCardView;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes2.dex */
|
|
public class TransformationChildCard extends CircularRevealCardView {
|
|
public TransformationChildCard(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public TransformationChildCard(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
}
|
|
}
|