@@ -20,12 +20,14 @@ class _EditNoteState extends State<EditNote> {
20
20
@override
21
21
void initState () {
22
22
super .initState ();
23
- if (widget.isNew) {
23
+ if (widget.isNew == false ) {
24
24
for (var i = 0 ; i < kBackgroundColors.length; i++ ) {
25
25
if (widget.selectedNote? .backgroundColor == kBackgroundColors[i]) {
26
26
selectedColorIndex = i;
27
27
}
28
28
}
29
+ title = widget.selectedNote? .title ?? '' ;
30
+ note = widget.selectedNote? .note ?? '' ;
29
31
}
30
32
}
31
33
@@ -65,10 +67,14 @@ class _EditNoteState extends State<EditNote> {
65
67
Padding (
66
68
padding: const EdgeInsets .fromLTRB (20 , 30 , 20 , 20 ),
67
69
child: TextField (
70
+ keyboardType: TextInputType .multiline,
71
+ maxLines: null ,
68
72
controller: TextEditingController (
69
- text: widget.isNew ? widget.selectedNote? .title : '' ),
73
+ text: widget.isNew ? title : widget.selectedNote? .title),
70
74
style: TextStyle (color: Color (kTextColors[selectedColorIndex])),
71
- decoration: kInputFieldDecoration,
75
+ decoration: kInputFieldDecoration.copyWith (
76
+ fillColor: Color (kTextColors[selectedColorIndex])
77
+ .withOpacity (0.15 )),
72
78
onChanged: (value) {
73
79
title = value;
74
80
},
@@ -78,15 +84,17 @@ class _EditNoteState extends State<EditNote> {
78
84
padding: const EdgeInsets .fromLTRB (20 , 0 , 20 , 0 ),
79
85
child: TextField (
80
86
controller: TextEditingController (
81
- text: widget.isNew ? widget.selectedNote? .note : '' ),
87
+ text: widget.isNew ? note : widget.selectedNote? .note),
82
88
onChanged: (String value) {
83
89
note = value;
84
90
},
85
91
keyboardType: TextInputType .multiline,
86
92
style: TextStyle (color: Color (kTextColors[selectedColorIndex])),
87
93
minLines: 10 ,
88
94
maxLines: null ,
89
- decoration: kNoteInputFieldDecoration,
95
+ decoration: kNoteInputFieldDecoration.copyWith (
96
+ fillColor: Color (kTextColors[selectedColorIndex])
97
+ .withOpacity (0.15 )),
90
98
),
91
99
),
92
100
const Padding (
@@ -107,27 +115,29 @@ class _EditNoteState extends State<EditNote> {
107
115
),
108
116
Padding (
109
117
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
+ },
131
141
),
132
142
),
133
143
],
0 commit comments