19 lines
483 B
Java
19 lines
483 B
Java
|
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);
|
||
|
}
|
||
|
|
||
|
}
|