blob: f85df39fb2889d6e41a7b74ea500fcb2e48bbceb [file] [log] [blame]
package android.support.design.widget;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.FrameLayout;
public class BottomNavigationView extends FrameLayout {
public BottomNavigationView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}