31 lines
845 B
Java
31 lines
845 B
Java
|
|
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();
|
||
|
|
}
|
||
|
|
}
|