@@ -287,31 +287,35 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
287
287
Key ('No existing feeds displaying container' ),
288
288
height: 60 ,
289
289
width: double .infinity,
290
- decoration: BoxDecoration (
291
- border: Border .all (color: Colors .white38),
292
- borderRadius: BorderRadius .only (
293
- topRight: Radius .circular (8 ),
294
- topLeft: Radius .circular (8 ),
295
- bottomLeft: Radius .circular (8 ),
296
- bottomRight: Radius .circular (8 ),
297
- ),
298
- color: ThemeProvider .theme.primaryColorLight,
299
- ),
300
- child: Row (
301
- mainAxisAlignment: MainAxisAlignment .start,
302
- children: [
303
- Padding (
304
- padding: const EdgeInsets .only (left: 10.0 ),
305
- child: Text (
306
- "No feeds defined." ,
307
- style: TextStyle (
308
- fontSize: 16 ,
309
- fontFamily: 'Montserrat' ,
310
- color: ThemeProvider .theme.textTheme
311
- .bodyText1? .color),
290
+ color: ThemeProvider .theme.primaryColorLight,
291
+ child: InputDecorator (
292
+ decoration: InputDecoration (
293
+ border: OutlineInputBorder (
294
+ borderRadius: BorderRadius .only (
295
+ topRight: Radius .circular (8 ),
296
+ topLeft: Radius .circular (8 ),
297
+ bottomLeft: Radius .circular (8 ),
298
+ bottomRight: Radius .circular (8 ),
312
299
),
313
300
),
314
- ],
301
+ ),
302
+ child: Row (
303
+ mainAxisAlignment: MainAxisAlignment .start,
304
+ children: [
305
+ Padding (
306
+ padding:
307
+ const EdgeInsets .only (left: 10.0 ),
308
+ child: Text (
309
+ "No feeds defined." ,
310
+ style: TextStyle (
311
+ fontSize: 16 ,
312
+ fontFamily: 'Montserrat' ,
313
+ color: ThemeProvider .theme.textTheme
314
+ .bodyText1? .color),
315
+ ),
316
+ ),
317
+ ],
318
+ ),
315
319
),
316
320
),
317
321
Padding (
0 commit comments