Skip to content

Commit c97a8c9

Browse files
committed
Add complete Frontend for application
1 parent 0062830 commit c97a8c9

9 files changed

+113
-34
lines changed

lib/constants.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const kNoteInputFieldDecoration = InputDecoration(
8989
);
9090

9191
// Button height
92-
const kBottomContainerHeight = 25.0;
92+
const kBottomContainerHeight = 50.0;
9393

9494
// Button text Style
9595
const kButtonTextStyle = TextStyle(

lib/helpers/note_manager.dart

+26
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,30 @@ class NoteManager {
6262
}
6363
return null;
6464
}
65+
66+
void upateNoteFromId(
67+
{required String title,
68+
required String note,
69+
required int backgroundColor,
70+
required int textColor,
71+
required String date,
72+
required int id}) {
73+
for (var currentNote in notesList) {
74+
if (currentNote.id == id) {
75+
currentNote.title = title;
76+
currentNote.note = note;
77+
currentNote.date = date;
78+
currentNote.backgroundColor = backgroundColor;
79+
currentNote.textColor = textColor;
80+
return;
81+
}
82+
}
83+
}
84+
85+
void deleteNoteFromId(int noteId) {
86+
for (int index = 0; index < notesList.length; index++) {
87+
if (notesList[index].id == noteId) notesList.removeAt(index);
88+
}
89+
return;
90+
}
6591
}

lib/screens/edit_note_screen.dart

+36-26
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ class _EditNoteState extends State<EditNote> {
2020
@override
2121
void initState() {
2222
super.initState();
23-
if (widget.isNew) {
23+
if (widget.isNew == false) {
2424
for (var i = 0; i < kBackgroundColors.length; i++) {
2525
if (widget.selectedNote?.backgroundColor == kBackgroundColors[i]) {
2626
selectedColorIndex = i;
2727
}
2828
}
29+
title = widget.selectedNote?.title ?? '';
30+
note = widget.selectedNote?.note ?? '';
2931
}
3032
}
3133

@@ -65,10 +67,14 @@ class _EditNoteState extends State<EditNote> {
6567
Padding(
6668
padding: const EdgeInsets.fromLTRB(20, 30, 20, 20),
6769
child: TextField(
70+
keyboardType: TextInputType.multiline,
71+
maxLines: null,
6872
controller: TextEditingController(
69-
text: widget.isNew ? widget.selectedNote?.title : ''),
73+
text: widget.isNew ? title : widget.selectedNote?.title),
7074
style: TextStyle(color: Color(kTextColors[selectedColorIndex])),
71-
decoration: kInputFieldDecoration,
75+
decoration: kInputFieldDecoration.copyWith(
76+
fillColor: Color(kTextColors[selectedColorIndex])
77+
.withOpacity(0.15)),
7278
onChanged: (value) {
7379
title = value;
7480
},
@@ -78,15 +84,17 @@ class _EditNoteState extends State<EditNote> {
7884
padding: const EdgeInsets.fromLTRB(20, 0, 20, 0),
7985
child: TextField(
8086
controller: TextEditingController(
81-
text: widget.isNew ? widget.selectedNote?.note : ''),
87+
text: widget.isNew ? note : widget.selectedNote?.note),
8288
onChanged: (String value) {
8389
note = value;
8490
},
8591
keyboardType: TextInputType.multiline,
8692
style: TextStyle(color: Color(kTextColors[selectedColorIndex])),
8793
minLines: 10,
8894
maxLines: null,
89-
decoration: kNoteInputFieldDecoration,
95+
decoration: kNoteInputFieldDecoration.copyWith(
96+
fillColor: Color(kTextColors[selectedColorIndex])
97+
.withOpacity(0.15)),
9098
),
9199
),
92100
const Padding(
@@ -107,27 +115,29 @@ class _EditNoteState extends State<EditNote> {
107115
),
108116
Padding(
109117
padding: const EdgeInsets.all(20.0),
110-
child: TextButton(
111-
style: TextButton.styleFrom(
112-
backgroundColor: kSecondaryColor,
113-
textStyle: const TextStyle(
114-
color: Colors.white,
115-
fontSize: 16,
116-
fontWeight: FontWeight.bold,
117-
),
118-
),
119-
onPressed: () {},
120-
child: BottomButton(
121-
text: widget.isNew ? 'Add' : 'Update',
122-
onClick: () {
123-
Navigator.pop(context, {
124-
"title": title,
125-
"note": note,
126-
"colorIndex": selectedColorIndex,
127-
"date": dateToday
128-
});
129-
},
130-
),
118+
child: BottomButton(
119+
backgroundColor: kSecondaryColor,
120+
text: widget.isNew ? 'Add' : 'Update',
121+
onClick: () {
122+
Navigator.pop(context, {
123+
"title": title,
124+
"note": note,
125+
"colorIndex": selectedColorIndex,
126+
"date": dateToday,
127+
"id": widget.selectedNote?.id,
128+
});
129+
},
130+
),
131+
),
132+
Padding(
133+
padding: const EdgeInsets.fromLTRB(20, 0, 20, 10),
134+
child: BottomButton(
135+
backgroundColor: Colors.red,
136+
text: widget.isNew ? 'Remove' : 'Delete',
137+
onClick: () {
138+
Navigator.pop(context,
139+
{"isDelete": true, "id": widget.selectedNote?.id});
140+
},
131141
),
132142
),
133143
],

lib/screens/home_screen.dart

+19-3
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,33 @@ class Home extends StatefulWidget {
1818

1919
class _HomeState extends State<Home> {
2020
NoteManager noteManager = NoteManager();
21-
void onClickNote(int noteId) {
21+
void onClickNote(int noteId) async {
2222
Note? selectedNote = noteManager.getNoteFromId(noteId);
2323
if (selectedNote == null) return;
24-
Navigator.push(
24+
var updatedNote = await Navigator.push(
2525
context,
2626
MaterialPageRoute(
2727
builder: (context) => EditNote(
28-
isNew: true,
28+
isNew: false,
2929
selectedNote: selectedNote,
3030
),
3131
),
3232
);
33+
if (updatedNote != null) {
34+
setState(() {
35+
if (updatedNote['isDelete'] == true) {
36+
noteManager.deleteNoteFromId(updatedNote['id']);
37+
return;
38+
}
39+
noteManager.upateNoteFromId(
40+
title: updatedNote['title'],
41+
note: updatedNote['note'],
42+
backgroundColor: kBackgroundColors[updatedNote['colorIndex']],
43+
textColor: kTextColors[updatedNote['colorIndex']],
44+
date: updatedNote['date'],
45+
id: updatedNote['id']);
46+
});
47+
}
3348
}
3449

3550
@override
@@ -75,6 +90,7 @@ class _HomeState extends State<Home> {
7590
);
7691
if (newNoteData != null) {
7792
setState(() {
93+
if (newNoteData['isDelete'] == true) return;
7894
noteManager.addNewNote(
7995
title: newNoteData['title'],
8096
note: newNoteData['note'],

lib/widgets/bottom_button.dart

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,19 @@ class BottomButton extends StatelessWidget {
66
Key? key,
77
required this.onClick,
88
required this.text,
9+
required this.backgroundColor,
910
}) : super(key: key);
1011
final String text;
1112
final VoidCallback onClick;
13+
final Color backgroundColor;
1214
@override
1315
Widget build(BuildContext context) {
1416
return GestureDetector(
1517
onTap: onClick,
1618
child: Container(
19+
decoration: BoxDecoration(
20+
borderRadius: BorderRadius.circular(10), color: backgroundColor),
1721
alignment: Alignment.center,
18-
color: kSecondaryColor,
1922
margin: const EdgeInsets.only(top: 10),
2023
width: double.infinity,
2124
height: kBottomContainerHeight,

lib/widgets/note_card_widget.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import 'package:flutterkeep/helpers/note.dart';
55
class NoteCard extends StatelessWidget {
66
final Note noteData;
77
final Function onClick;
8-
NoteCard({super.key, required this.noteData, required this.onClick});
8+
const NoteCard({super.key, required this.noteData, required this.onClick});
99

1010
@override
1111
Widget build(BuildContext context) {
1212
return GestureDetector(
13-
onTap: () => onClick(noteData.id),
13+
onTap: () async => await onClick(noteData.id),
1414
child: Card(
1515
color: Color(noteData.backgroundColor),
1616
shape: RoundedRectangleBorder(

macos/Flutter/GeneratedPluginRegistrant.swift

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
import FlutterMacOS
66
import Foundation
77

8+
import sqflite
89

910
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
11+
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
1012
}

pubspec.lock

+22-1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,20 @@ packages:
114114
url: "https://pub.dartlang.org"
115115
source: hosted
116116
version: "1.9.0"
117+
sqflite:
118+
dependency: "direct main"
119+
description:
120+
name: sqflite
121+
url: "https://pub.dartlang.org"
122+
source: hosted
123+
version: "2.1.0"
124+
sqflite_common:
125+
dependency: transitive
126+
description:
127+
name: sqflite_common
128+
url: "https://pub.dartlang.org"
129+
source: hosted
130+
version: "2.3.0"
117131
stack_trace:
118132
dependency: transitive
119133
description:
@@ -142,6 +156,13 @@ packages:
142156
url: "https://pub.dartlang.org"
143157
source: hosted
144158
version: "1.1.1"
159+
synchronized:
160+
dependency: transitive
161+
description:
162+
name: synchronized
163+
url: "https://pub.dartlang.org"
164+
source: hosted
165+
version: "3.0.0+3"
145166
term_glyph:
146167
dependency: transitive
147168
description:
@@ -165,4 +186,4 @@ packages:
165186
version: "2.1.2"
166187
sdks:
167188
dart: ">=2.18.1 <3.0.0"
168-
flutter: ">=1.17.0"
189+
flutter: ">=3.3.0-0"

pubspec.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ dependencies:
3636
# Use with the CupertinoIcons class for iOS style icons.
3737
cupertino_icons: ^1.0.2
3838
staggered_grid_view_flutter: ^0.0.4
39+
sqflite: ^2.1.0
3940

4041
dev_dependencies:
4142
flutter_test:

0 commit comments

Comments
 (0)