-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathGoalInput.js
More file actions
79 lines (74 loc) · 1.71 KB
/
GoalInput.js
File metadata and controls
79 lines (74 loc) · 1.71 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
import { useState } from 'react';
import {
View,
TextInput,
Button,
StyleSheet,
Modal,
Image
} from 'react-native';
export default function GoalInput(props) {
const [enteredGoalText, setEnteredGoalText] = useState('');
function goalInputHandler(enteredText) {
setEnteredGoalText(enteredText);
}
function addGoalHandler() {
props.onAddGoal(enteredGoalText);
setEnteredGoalText('');
}
return (
<Modal visible={props.visible} animationType='slide'>
<View style={styles.inputContainer}>
<Image
style={styles.image}
source={require('../assets/images/goal.png')}
/>
<TextInput
style={styles.textInput}
placeholder='Your course goal!'
onChangeText={goalInputHandler}
value={enteredGoalText}
/>
<View style={styles.buttonContainer}>
<View style={styles.button}>
<Button title='Cancel' onPress={props.onCancel} color='#f31282' />
</View>
<View style={styles.button}>
<Button title='Add Goal' onPress={addGoalHandler} color='#b180f0' />
</View>
</View>
</View>
</Modal>
);
}
const styles = StyleSheet.create({
inputContainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
padding: 16,
backgroundColor: '#311b6b'
},
image: {
width: 100,
height: 100,
margin: 20
},
textInput: {
borderWidth: 1,
borderColor: '#e4d0ff',
backgroundColor: '#e4d0ff',
color: '#120438',
borderRadius: 6,
width: '100%',
padding: 16
},
buttonContainer: {
marginTop: 8,
flexDirection: 'row'
},
button: {
width: 100,
marginHorizontal: 8
}
});