File tree Expand file tree Collapse file tree 11 files changed +22
-22
lines changed Expand file tree Collapse file tree 11 files changed +22
-22
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"expo" : {
3
- "name" : " app " ,
4
- "slug" : " app " ,
3
+ "name" : " ✅ ToDoApp " ,
4
+ "slug" : " todoapp " ,
5
5
"version" : " 1.0.0" ,
6
6
"orientation" : " portrait" ,
7
7
"icon" : " ./assets/images/icon.png" ,
46
46
}
47
47
}
48
48
}
49
- }
49
+ }
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export default function AuthLayout() {
14
14
screenOptions = { {
15
15
header : ( ) => (
16
16
< NavigationHeader
17
- title = "Todo App "
17
+ title = "✅ ToDoApp "
18
18
subtitle = "Authentication"
19
19
showBack = { true }
20
20
showAuth = { false }
Original file line number Diff line number Diff line change @@ -27,14 +27,14 @@ export default function TabLayout() {
27
27
28
28
if ( routeString === 'newTodo' ) {
29
29
return {
30
- title : 'Add New Todo ' ,
30
+ title : 'Add New ToDo ' ,
31
31
subtitle : 'Create a new task' ,
32
32
} ;
33
33
}
34
34
35
35
if ( segments . some ( segment => String ( segment ) === 'todo' ) ) {
36
36
return {
37
- title : 'Todo List' ,
37
+ title : 'ToDo List' ,
38
38
subtitle : 'Manage your tasks' ,
39
39
} ;
40
40
}
@@ -91,11 +91,11 @@ export default function TabLayout() {
91
91
< Tabs . Screen
92
92
name = "todo"
93
93
options = { {
94
- title : 'Todo ' ,
94
+ title : 'ToDo ' ,
95
95
headerShown : true ,
96
96
header : ( ) => (
97
97
< NavigationHeader
98
- title = "Todo List"
98
+ title = "ToDo List"
99
99
subtitle = "Manage your tasks"
100
100
/>
101
101
) ,
Original file line number Diff line number Diff line change @@ -10,19 +10,19 @@ export default function TodoStack() {
10
10
< Stack . Screen
11
11
name = "index"
12
12
options = { {
13
- title : 'Todo List' ,
13
+ title : 'ToDo List' ,
14
14
} }
15
15
/>
16
16
< Stack . Screen
17
17
name = "newTodo"
18
18
options = { {
19
- title : 'Add New Todo ' ,
19
+ title : 'Add New ToDo ' ,
20
20
} }
21
21
/>
22
22
< Stack . Screen
23
- name = "[id] "
23
+ name = "editTodo "
24
24
options = { {
25
- title : 'Edit Todo ' ,
25
+ title : 'Edit ToDo ' ,
26
26
} }
27
27
/>
28
28
</ Stack >
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export default function EditTodoTab() {
25
25
return (
26
26
< View flex = { 1 } justifyContent = "center" alignItems = "center" padding = "lg" >
27
27
< Text variant = "bodyMedium" color = "textPrimary" >
28
- Todo not found
28
+ ToDo not found
29
29
</ Text >
30
30
</ View >
31
31
) ;
@@ -55,7 +55,7 @@ export default function EditTodoTab() {
55
55
color = "textPrimary"
56
56
style = { { marginBottom : 24 } }
57
57
>
58
- Edit Todo
58
+ Edit ToDo
59
59
</ Text >
60
60
61
61
< View style = { { gap : 20 } } >
@@ -96,7 +96,7 @@ export default function EditTodoTab() {
96
96
/>
97
97
98
98
< Button
99
- title = "Delete Todo "
99
+ title = "Delete ToDo "
100
100
variant = "secondary"
101
101
size = "large"
102
102
fullWidth
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export default function TodoIndexTab() {
24
24
color = "textPrimary"
25
25
style = { { marginBottom : 16 } }
26
26
>
27
- Todo List
27
+ ToDo List
28
28
</ Text >
29
29
30
30
{ isLoading && (
@@ -85,7 +85,7 @@ export default function TodoIndexTab() {
85
85
</ View >
86
86
87
87
< View marginLeft = "md" >
88
- < Link href = { `/todo/editTodo?id=${ item . id } ` } asChild >
88
+ < Link href = { `/(user)/ todo/editTodo?id=${ item . id } ` } asChild >
89
89
< Text variant = "labelMedium" color = "interactive" >
90
90
✏️ Edit
91
91
</ Text >
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export default function NewTodoTab() {
33
33
color = "textPrimary"
34
34
style = { { marginBottom : 24 } }
35
35
>
36
- Add New Todo
36
+ Add New ToDo
37
37
</ Text >
38
38
39
39
< View style = { { gap : 20 } } >
@@ -64,7 +64,7 @@ export default function NewTodoTab() {
64
64
</ View >
65
65
66
66
< Button
67
- title = "Add Todo "
67
+ title = "Add ToDo "
68
68
variant = "primary"
69
69
size = "large"
70
70
fullWidth
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export default function RootLayout() {
9
9
screenOptions = { {
10
10
header : ( ) => (
11
11
< NavigationHeader
12
- title = "Todo App "
12
+ title = "✅ ToDoApp "
13
13
showBack = { false }
14
14
/>
15
15
) ,
@@ -21,7 +21,7 @@ export default function RootLayout() {
21
21
title : 'Home' ,
22
22
header : ( ) => (
23
23
< NavigationHeader
24
- title = "Todo App "
24
+ title = "✅ ToDoApp "
25
25
subtitle = "Welcome back!"
26
26
showBack = { false }
27
27
/>
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const Index = () => {
27
27
< View flex = { 1 } justifyContent = "center" >
28
28
< View marginBottom = "xl" >
29
29
< Text variant = "headlineMedium" color = "textPrimary" align = "center" >
30
- ✅ Welcome to Your Tasks App ✅
30
+ ✅ ToDoApp ✅
31
31
</ Text >
32
32
< Text
33
33
variant = "bodyLarge"
You can’t perform that action at this time.
0 commit comments