Tesis 1.0.0
Loading...
Searching...
No Matches
EmptyCartFragment.java
Go to the documentation of this file.
1package com.example.food_front;
2
3import android.os.Bundle;
4
5import androidx.fragment.app.Fragment;
6
7import android.view.LayoutInflater;
8import android.view.View;
9import android.view.ViewGroup;
10
16public class EmptyCartFragment extends Fragment {
17
19 // Required empty public constructor
20 }
21
22
23 @Override
24 public View onCreateView(LayoutInflater inflater, ViewGroup container,
25 Bundle savedInstanceState) {
26 // Inflate the layout for this fragment
27 return inflater.inflate(R.layout.fragment_empty_cart, container, false);
28 }
29}
View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)