-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
74 lines (64 loc) · 1.83 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import React, { useState } from "react";
import { StyleSheet, SafeAreaView } from "react-native";
import * as Font from "expo-font";
// import { AppLoading } from "expo";
import Header from "./components/Header";
import StartGameScreen from "./screens/StartGameScreen";
import GameScreen from "./screens/GameScreen";
import GameOverScreen from "./screens/GameOverScreen";
const fetchFonts = () => {
return Font.loadAsync({
"open-sans-reg": require("./assets/fonts/OpenSans-Regular.ttf"),
"open-sans-bold": require("./assets/fonts/OpenSans-Bold.ttf"),
});
};
export default function App() {
const [userChoice, setUserChoice] = useState();
const [guessRounds, setGuessRounds] = useState(0);
const [dataLoaded, setDataLoaded] = useState(false);
// if (!dataLoaded) {
// return (
// <AppLoading
// startAsync={fetchFonts}
// onFinish={() => setDataLoaded(true)}
// onError={(err) => console.log(err)}
// />
// );
// }
const startGameHandler = (selectedNumber) => {
setUserChoice(selectedNumber);
setGuessRounds(0);
};
const gameOverHandler = (numberOfRounds) => {
setGuessRounds(numberOfRounds);
};
const newGameHandler = () => {
setUserChoice("");
setGuessRounds(0);
};
let content = <StartGameScreen onStartGame={startGameHandler} />;
if (userChoice && guessRounds <= 0) {
content = (
<GameScreen onGameOver={gameOverHandler} userChoice={userChoice} />
);
} else if (guessRounds > 0) {
content = (
<GameOverScreen
newGame={newGameHandler}
rounds={guessRounds}
userNumber={userChoice}
/>
);
}
return (
<SafeAreaView style={styles.screen}>
<Header title={"Guess a Number 🎮"} />
{content}
</SafeAreaView>
);
}
const styles = StyleSheet.create({
screen: {
flex: 1,
},
});