package com.android.launcher3.views;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.FrameLayout;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
public class SwipUpView extends FrameLayout {
public SwipUpView(@NonNull Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}
public SwipUpView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}