-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
141 lines (126 loc) · 3.45 KB
/
App.js
File metadata and controls
141 lines (126 loc) · 3.45 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import { StatusBar } from 'expo-status-bar';
import React, {useState} from 'react';
import Button from "./Button.js"
import LabelledSlider from "./LabelledSlider.js"
import Slider from './Slider.js'
import Overlay from "./Overlay.js"
import { Pressable, StyleSheet, Text, View } from 'react-native';
export default function App() {
const [overlayVisible, setOverlayVisible] = useState(false)
const [sliderValue, setSliderValue] = useState(0.5)
function toggleOverlayVisible() {
console.log("App: toggleOverlayVisible")
setOverlayVisible(!overlayVisible)
}
function onPress() {
console.log("Button pressed");
}
function onLongPress() {
console.log("Long press");
}
function onPressIn() {
console.log("Press in");
}
function onPressOut() {
console.log("Press out");
toggleOverlayVisible();
}
function onSlidingStart() {
console.log("Sliding start")
}
function onSlidingComplete() {
console.log("Sliding complete")
}
function onValueChange(val) {
console.log("Slider value changed: " + val)
setSliderValue(val);
}
function onShowOverlay() {
console.log("Overlay shown")
}
const appButtonPressed = () => {
console.log("App: Button pressed")
toggleOverlayVisible();
}
return (
<View style={styles.container}>
<Overlay
visible={overlayVisible}
animationType="slide"
onShow={onShowOverlay}
onBackgroundPress={toggleOverlayVisible}
backdropColor='rgba(0, 0, 0, 0.2)'
overlayStyle={styles.overlayStyle}
coverage={sliderValue}
>
<Button
onPress={appButtonPressed}
containerStyle={{ backgroundColor: "blue", alignItems: "center", justifyContent: "center", padding: 10}}
labelStyle={{textAlign: "center", backgroundColor: "green"}}
>Here is the button label</Button>
{/* <Pressable
onPress={toggleOverlayVisible}
style={styles.overlayContentStyle}
>
<Text>Here is the overlay Text</Text>
</Pressable> */}
</Overlay>
<Text>Open up App.js to start working on your app!</Text>
<Button
containerStyle={styles.buttonStyle}
labelStyle={styles.labelStyle}
onPressIn={onPressIn}
onPressOut={onPressOut}
onLongPress={onLongPress}
onPress={onPress}>
Button Label
</Button>
<LabelledSlider
// sliderStyle={styles.sliderStyle}
label={"Slider value: "+sliderValue}
labelStyle={{ flex: 1, textAlign: "left", color: "red" }}
minimumValue={0.1}
maximumValue={1.0}
step={0.1}
value={sliderValue}
onSlidingStart={onSlidingStart}
onSlidingComplete={onSlidingComplete}
onValueChange={onValueChange}
/>
<Text>{sliderValue}</Text>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#eee',
alignItems: 'center',
justifyContent: 'center',
},
buttonStyle: {
width: 100,
height: 50,
backgroundColor: "rgba(255, 0, 0, 1)",
justifyContent: "center",
borderRadius: 12
},
labelStyle: {
color: '#fff',
textAlign: "center",
},
sliderStyle: {
width: 200,
height: 100,
},
overlayStyle: {
flex: 1,
// alignItems: "center",
// justifyContent: "center",
backgroundColor: "red",
},
overlayContentStyle: {
backgroundColor: "#0f0"
}
});