blob: 601b0af981f0a0e97070c331215e7268b8e96782 [file] [log] [blame]
package com.google.android.material.textfield;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.LinearLayout;
public class TextInputLayout extends LinearLayout {
public TextInputLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}