@@ -69,7 +69,6 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
69
69
bottomNavigationBar: isLoading
70
70
? null
71
71
: Container (
72
- color: Colors .white,
73
72
padding: EdgeInsets .symmetric (horizontal: 20 , vertical: 30 ),
74
73
child: LoadingElevatedButton (
75
74
isLoading: isSubmit,
@@ -86,7 +85,7 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
86
85
shape: MaterialStateProperty .all <RoundedRectangleBorder >(
87
86
RoundedRectangleBorder (
88
87
borderRadius: BorderRadius .circular (10 ),
89
- side: BorderSide (color : Colors .blue ),
88
+ side: BorderSide (),
90
89
),
91
90
),
92
91
),
@@ -99,10 +98,7 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
99
98
elevation: 1 ,
100
99
title: Text (
101
100
'Feedback' ,
102
- style: TextStyle (color: Colors .black, fontSize: 22 ),
103
101
),
104
- iconTheme: IconThemeData (color: Colors .black),
105
- backgroundColor: Colors .white,
106
102
),
107
103
body: isLoading
108
104
? SubmitedFeedbackScreen ()
@@ -116,7 +112,6 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
116
112
width: MediaQuery .of (context).size.width,
117
113
padding:
118
114
EdgeInsets .symmetric (horizontal: 24 , vertical: 16 ),
119
- color: Colors .white,
120
115
child: Column (
121
116
crossAxisAlignment: CrossAxisAlignment .start,
122
117
children: [
@@ -169,7 +164,6 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
169
164
}
170
165
return Icon (
171
166
Icons .sentiment_satisfied,
172
- color: Colors .white,
173
167
);
174
168
},
175
169
onRatingUpdate: (value) {
@@ -186,7 +180,6 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
186
180
padding:
187
181
EdgeInsets .symmetric (horizontal: 24 , vertical: 16 ),
188
182
margin: EdgeInsets .symmetric (vertical: 16 ),
189
- color: Colors .white,
190
183
child: Column (
191
184
crossAxisAlignment: CrossAxisAlignment .start,
192
185
children: [
@@ -215,6 +208,7 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
215
208
});
216
209
}
217
210
},
211
+ context,
218
212
selectedCard:
219
213
selectedList.contains (1 ) ? true : false ,
220
214
),
@@ -231,6 +225,7 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
231
225
});
232
226
}
233
227
},
228
+ context,
234
229
selectedCard:
235
230
selectedList.contains (2 ) ? true : false ,
236
231
),
@@ -247,6 +242,7 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
247
242
});
248
243
}
249
244
},
245
+ context,
250
246
selectedCard:
251
247
selectedList.contains (3 ) ? true : false ,
252
248
),
@@ -271,6 +267,7 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
271
267
});
272
268
}
273
269
},
270
+ context,
274
271
selectedCard:
275
272
selectedList.contains (5 ) ? true : false ,
276
273
),
@@ -294,11 +291,8 @@ class _FeedbackScreanState extends State<FeedbackScrean> {
294
291
hintStyle: TextStyle (
295
292
fontSize: 14 ,
296
293
),
297
- fillColor: Colors .white,
298
294
focusedBorder: OutlineInputBorder (
299
- borderSide: BorderSide (
300
- color: Colors .blue,
301
- ),
295
+ borderSide: BorderSide (),
302
296
),
303
297
enabledBorder: OutlineInputBorder (
304
298
borderSide: BorderSide (),
0 commit comments