This commit is contained in:
ADITYA
2023-06-29 17:54:41 +05:30
commit 0242aa3b73
199 changed files with 10382 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
package com.ssb.simplitend.userprofile;
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;
import com.ssb.simplitend.databinding.ProfileProgressFragmentBinding;
public class ProfileProgressFragment extends Fragment {
// view binding
protected ProfileProgressFragmentBinding binding;
public ProfileProgressFragment(){
// required empty const.
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
binding = ProfileProgressFragmentBinding.inflate(inflater, container, false);
return binding.getRoot();
}
}