-
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.
- Loading branch information
1 parent
02d8d9b
commit 7fe1281
Showing
5 changed files
with
205 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,77 @@ | ||
import React from "react"; | ||
import { Image, SafeAreaView, StyleSheet, View } from "react-native"; | ||
import { Button, Text, useTheme } from "react-native-paper"; | ||
|
||
import { useAxios } from "../providers/hooks"; | ||
import { SPOON_API_URL } from "../config/config"; | ||
|
||
export function Home({ navigation }) { | ||
const theme = useTheme(); | ||
const { publicAxios } = useAxios(); | ||
const [isLoading, setIsLoading] = React.useState(false); | ||
|
||
return ( | ||
<SafeAreaView style={{ backgroundColor: theme.colors.primary }}> | ||
<View style={[styles.container]}> | ||
<Text | ||
variant="displayMedium" | ||
style={{ | ||
color: theme.colors.background, | ||
fontFamily: "MagazineLetter", | ||
}} | ||
> | ||
lefty | ||
</Text> | ||
</View> | ||
<View | ||
style={{ | ||
backgroundColor: theme.colors.background, | ||
gap: 20, | ||
padding: 20, | ||
}} | ||
> | ||
<Text variant="titleLarge" style={{ fontWeight: "bold" }}> | ||
What to make today? | ||
</Text> | ||
<View style={{ alignItems: "center" }}> | ||
<Image | ||
source={require("../assets/lefty.png")} | ||
style={{ width: "100%", height: 320, marginVertical: 50 }} | ||
/> | ||
<Button | ||
mode="contained" | ||
icon="compass" | ||
loading={isLoading} | ||
onPress={async () => { | ||
setIsLoading(true); | ||
await publicAxios | ||
.get( | ||
`${SPOON_API_URL}/recipes/complexSearch?sort=random&instructionsRequired=true&fillIngredients=true&addRecipeInformation=true` | ||
) | ||
.then((res) => { | ||
navigation.navigate("DetailedRecipe", { | ||
listing: res.results[0], | ||
}); | ||
}) | ||
.catch((error) => {}) | ||
.finally(() => setIsLoading(false)); | ||
}} | ||
> | ||
Discover Recipes | ||
</Button> | ||
</View> | ||
</View> | ||
</SafeAreaView> | ||
); | ||
} | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
alignItems: "center", | ||
justifyContent: "center", | ||
width: "100%", | ||
height: 70, | ||
flexDirection: "row", | ||
gap: 15, | ||
}, | ||
}); |
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,59 @@ | ||
import React from "react"; | ||
import { SafeAreaView, View } from "react-native"; | ||
import { Switch, useTheme } from "react-native-paper"; | ||
import { ListItem } from "@rneui/themed"; | ||
|
||
import { useAppTheme } from "../providers/hooks"; | ||
import Layout from "../components/Layout"; | ||
|
||
export const Settings = ({ navigation }) => { | ||
const theme = useTheme(); | ||
const { darkMode, toggleDarkModeTheme } = useAppTheme(); | ||
|
||
return ( | ||
<SafeAreaView> | ||
<Layout title="Settings"> | ||
<View | ||
style={{ | ||
justifyContent: "center", | ||
alignItems: "center", | ||
marginBottom: 20, | ||
}} | ||
> | ||
<ListItem | ||
bottomDivider | ||
style={{ width: "100%" }} | ||
containerStyle={{ | ||
backgroundColor: theme.colors.background, | ||
borderColor: theme.colors.secondary, | ||
}} | ||
> | ||
<ListItem.Content> | ||
<ListItem.Title style={{ color: theme.colors.font }}> | ||
Dark Mode | ||
</ListItem.Title> | ||
</ListItem.Content> | ||
<Switch value={darkMode} onValueChange={toggleDarkModeTheme} /> | ||
</ListItem> | ||
|
||
<ListItem | ||
bottomDivider | ||
onPress={() => navigation.navigate("AboutLefty")} | ||
style={{ width: "100%" }} | ||
containerStyle={{ | ||
backgroundColor: theme.colors.background, | ||
borderColor: theme.colors.secondary, | ||
}} | ||
> | ||
<ListItem.Content> | ||
<ListItem.Title style={{ color: theme.colors.font }}> | ||
About Lefty | ||
</ListItem.Title> | ||
</ListItem.Content> | ||
<ListItem.Chevron /> | ||
</ListItem> | ||
</View> | ||
</Layout> | ||
</SafeAreaView> | ||
); | ||
}; |
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,69 @@ | ||
import React from "react"; | ||
import { SafeAreaView, View } from "react-native"; | ||
import { Text } from "react-native-paper"; | ||
|
||
import Layout from "../components/Layout"; | ||
|
||
export const AboutLefty = ({ navigation }) => { | ||
return ( | ||
<SafeAreaView> | ||
<Layout | ||
title="About Lefty" | ||
onAction={() => navigation.goBack()} | ||
iconName="chevron-left" | ||
> | ||
<View style={{ marginHorizontal: 15 }}> | ||
<Text | ||
variant="displayMedium" | ||
style={{ | ||
marginBottom: 15, | ||
fontFamily: "MagazineLetter", | ||
alignSelf: "center", | ||
}} | ||
> | ||
Lefty | ||
</Text> | ||
<Text style={{ marginBottom: 15 }}> | ||
Food waste is a global problem of staggering proportions. According | ||
to the United Nations, approximately one-third of all food produced | ||
worldwide goes to waste each year, amounting to about 1.3 billion | ||
tons. In a world where millions go hungry, this is not just an | ||
ethical concern; it's an environmental and economic crisis as well. | ||
</Text> | ||
<Text style={{ marginBottom: 15 }}> | ||
One significant contributor to food waste is the disposal of | ||
leftover ingredients, which often occurs because people struggle to | ||
find creative ways to use them effectively. | ||
</Text> | ||
<Text style={{ marginBottom: 15 }}> | ||
Leftover ingredients, whether it's half an onion, a handful of | ||
spinach, or a bit of cheese, often end up in the trash. These | ||
seemingly small portions collectively contribute to the massive | ||
problem of food waste. Many individuals find it challenging to come | ||
up with creative recipes using what they have on hand. | ||
</Text> | ||
<Text style={{ marginBottom: 15 }}> | ||
Lefty is designed to bridge the gap between leftover ingredients and | ||
delicious, waste-reducing meals. Users can input the ingredients | ||
they have on hand into the app, ranging from fresh produce to pantry | ||
staples.The app leverages a vast database of recipes and | ||
sophisticated algorithms to generate customized recipes based on the | ||
available ingredients. These recipes are not only easy to follow but | ||
also prioritize using up leftovers. | ||
</Text> | ||
<Text style={{ marginBottom: 15 }}> | ||
By offering users practical and appetizing ways to use their | ||
leftover ingredients, Lefty empowers them to make the most of what | ||
they already have, ultimately reducing food waste at home. | ||
</Text> | ||
<Text style={{ marginBottom: 15 }}> | ||
By reducing food waste, Lefty aims to contribute to a more | ||
sustainable planet by conserving resources and reducing greenhouse | ||
gas emissions. Together, we can make a positive impact on our planet | ||
and our kitchens. | ||
</Text> | ||
</View> | ||
</Layout> | ||
</SafeAreaView> | ||
); | ||
}; |