refactor(HasFab): add HasFab.java back

This commit is contained in:
LucasGGamerM
2025-04-03 11:52:20 -03:00
parent 5873e887f6
commit 5e619c06b1

View File

@@ -0,0 +1,10 @@
package org.joinmastodon.android.fragments;
import android.view.View;
public interface HasFab {
View getFab();
void showFab();
void hideFab();
boolean isScrolling();
}