diff --git a/testing/PlantFragment.java b/testing/PlantFragment.java new file mode 100644 index 0000000..379ab12 --- /dev/null +++ b/testing/PlantFragment.java @@ -0,0 +1,19 @@ +package com.example.doitnow; + +import android.os.Bundle; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.fragment.app.Fragment; + +public class PlantFragment extends Fragment { + @Nullable + @Override + public View onCreateView(@NonNull LayoutInflater inflater, + @Nullable ViewGroup container, + @Nullable Bundle savedInstanceState) { + return inflater.inflate(R.layout.fragment_plant, container, false); + } +}