Skip to content

Commit 3975ebb

Browse files
committed
fix boundary in existing feeds field
1 parent f512b90 commit 3975ebb

File tree

1 file changed

+27
-23
lines changed

1 file changed

+27
-23
lines changed

lib/Components/RSSFeedHomePage.dart

Lines changed: 27 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -287,31 +287,35 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
287287
Key('No existing feeds displaying container'),
288288
height: 60,
289289
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),
312299
),
313300
),
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+
),
315319
),
316320
),
317321
Padding(

0 commit comments

Comments
 (0)