blob: 04ca19e9ef76734b0d787e502562753e101a2b81 [file] [log] [blame]
package com.google.android.material.bottomnavigation;
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);
}
}