-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
45 lines (42 loc) · 987 Bytes
/
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
import { StatusBar } from "expo-status-bar";
import React, { useState } from "react";
import { StyleSheet, Text, View, Button } from "react-native";
import PlayScreen from "./src/PlayScreen";
export default function App() {
const [play, setPlay] = useState(false);
return play ? (
<>
<PlayScreen />
</>
) : (
<View style={styles.container}>
<Text style={styles.header}>Rock Paper Scissors</Text>
<Text style={styles.emoji}>🗿 📄 ✂️</Text>
<View style={styles.button}>
<Button title="PLAY" onPress={() => setPlay(true)} />
</View>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#F44336",
alignItems: "center",
justifyContent: "center",
},
header: {
fontSize: 30,
color: '#fff'
},
emoji: {
fontSize: 45,
marginTop: 10,
marginBottom: 10,
},
button: {
marginTop: 30,
width: 250,
},
});