From 95251d71159d0595ca89fa725af2ed3547958bcf Mon Sep 17 00:00:00 2001 From: Aaron Sun Date: Wed, 25 Nov 2020 12:28:16 -0800 Subject: [PATCH] Populated Store page with names of available stores --- .../main/java/com/example/listify/ui/store/StoreFragment.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Listify/app/src/main/java/com/example/listify/ui/store/StoreFragment.java b/Listify/app/src/main/java/com/example/listify/ui/store/StoreFragment.java index e89cd20..eb0fc32 100644 --- a/Listify/app/src/main/java/com/example/listify/ui/store/StoreFragment.java +++ b/Listify/app/src/main/java/com/example/listify/ui/store/StoreFragment.java @@ -13,6 +13,7 @@ import com.example.listify.R; public class StoreFragment extends Fragment { public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View root = inflater.inflate(R.layout.fragment_stores, container, false); + return root; } }