what-the-bank/sources/com/google/android/material/transformation/TransformationChildLayout.java

18 lines
537 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.android.material.transformation;
import android.content.Context;
import android.util.AttributeSet;
import com.google.android.material.circularreveal.CircularRevealFrameLayout;
@Deprecated
/* loaded from: classes2.dex */
public class TransformationChildLayout extends CircularRevealFrameLayout {
public TransformationChildLayout(Context context) {
this(context, null);
}
public TransformationChildLayout(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
}