This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
wiimmfi-watcher/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java

19 lines
483 B
Java
Raw Normal View History

2021-05-08 18:01:47 -06:00
package me.brysonsteck.wiimmfiwatcher;
import android.os.Bundle;
import android.view.View;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
public class AboutFragment extends Fragment {
public AboutFragment() { super(R.layout.about_fragment); }
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
}
}