-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explore: search options added to search by tags Explore: search added to search by name Explore: get recipes by day state
- Loading branch information
1 parent
40be759
commit 29f6539
Showing
18 changed files
with
239 additions
and
163 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
app/src/main/java/com/example/cookit_app/generalObjects/Tags.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.example.cookit_app.generalObjects; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
public class Tags { | ||
|
||
public List<String> food = new ArrayList<>(); | ||
public List<String> mealTime = new ArrayList<>(); | ||
|
||
public String foodFirstTag = "Pick Meal Time", mealTimeFirstTag = "Pick Food Categories"; | ||
|
||
|
||
public Tags() { | ||
food.add("Meat"); | ||
food.add("Soup"); | ||
food.add("Fish"); | ||
|
||
mealTime.add("Morning"); | ||
mealTime.add("Afternoon"); | ||
mealTime.add("Night"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.