-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
142 lines (128 loc) · 3.25 KB
/
App.js
File metadata and controls
142 lines (128 loc) · 3.25 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
142
import React, { useState } from 'react';
import { View, Text, TextInput, TouchableOpacity, StyleSheet } from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
const TaskItem = ({ task, onDelete }) => {
return (
<View style={styles.taskItem}>
<Text>{task}</Text>
<TouchableOpacity onPress={onDelete}>
<Text style={styles.deleteButton}>Delete</Text>
</TouchableOpacity>
</View>
);
};
const TaskList = ({ tasks, onDeleteTask }) => {
return (
<View>
{tasks.map((task, index) => (
<TaskItem key={index} task={task} onDelete={() => onDeleteTask(index)} />
))}
</View>
);
};
const TaskInput = ({ onAddTask }) => {
const [task, setTask] = useState('');
const handleAddTask = () => {
if (task.trim() !== '') {
onAddTask(task.trim());
setTask('');
}
};
return (
<View style={styles.taskInputContainer}>
<TextInput
style={styles.taskInput}
value={task}
onChangeText={(text) => setTask(text)}
placeholder="Enter a task"
/>
<TouchableOpacity onPress={handleAddTask}>
<Text style={styles.addButton}>Add Task</Text>
</TouchableOpacity>
</View>
);
};
const HomeScreen = ({ navigation }) => {
const [tasks, setTasks] = useState([]);
const handleAddTask = (task) => {
setTasks((prevTasks) => [...prevTasks, task]);
};
const handleDeleteTask = (index) => {
setTasks((prevTasks) => prevTasks.filter((_, i) => i !== index));
};
return (
<View style={styles.container}>
<Text style={styles.heading}>TaskMaster</Text>
<TaskInput onAddTask={handleAddTask} />
<TaskList tasks={tasks} onDeleteTask={handleDeleteTask} />
<TouchableOpacity onPress={() => navigation.navigate('About')}>
<Text style={styles.aboutLink}>About</Text>
</TouchableOpacity>
</View>
);
};
const AboutScreen = () => {
return (
<View style={styles.container}>
<Text style={styles.heading}>About TaskMaster</Text>
<Text>This app helps you manage your tasks and stay organized.</Text>
</View>
);
};
const Stack = createStackNavigator();
const App = () => {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Home" component={HomeScreen} />
<Stack.Screen name="About" component={AboutScreen} />
</Stack.Navigator>
</NavigationContainer>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 20,
backgroundColor: '#fff',
},
heading: {
fontSize: 24,
fontWeight: 'bold',
marginBottom: 20,
},
taskInputContainer: {
flexDirection: 'row',
marginBottom: 20,
},
taskInput: {
flex: 1,
borderWidth: 1,
borderColor: '#ccc',
borderRadius: 4,
paddingHorizontal: 10,
marginRight: 10,
},
addButton: {
padding: 10,
backgroundColor: 'green',
color: '#fff',
borderRadius: 4,
},
taskItem: {
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
marginBottom: 10,
},
deleteButton: {
color: 'red',
},
aboutLink: {
marginTop: 10,
color: 'blue',
textDecorationLine: 'underline',
},
});
export default App;