Skip to content

Commit 071a9ef

Browse files
authored
Merge pull request #136 from amitamrutiya2210/feature/AmazingFeature
Fix boundaries visibility on existings feeds and existing rules in light
2 parents 5af7c94 + 8802adc commit 071a9ef

File tree

1 file changed

+54
-46
lines changed

1 file changed

+54
-46
lines changed

lib/Components/RSSFeedHomePage.dart

Lines changed: 54 additions & 46 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(
@@ -1509,31 +1513,35 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
15091513
key: Key('No rules defined'),
15101514
height: 60,
15111515
width: double.infinity,
1512-
decoration: BoxDecoration(
1513-
border: Border.all(color: Colors.white38),
1514-
borderRadius: BorderRadius.only(
1515-
topRight: Radius.circular(8),
1516-
topLeft: Radius.circular(8),
1517-
bottomLeft: Radius.circular(8),
1518-
bottomRight: Radius.circular(8),
1519-
),
1520-
color: ThemeProvider.theme.primaryColorLight,
1521-
),
1522-
child: Row(
1523-
mainAxisAlignment: MainAxisAlignment.start,
1524-
children: [
1525-
Padding(
1526-
padding: const EdgeInsets.only(left: 10.0),
1527-
child: Text(
1528-
"No rules defined.",
1529-
style: TextStyle(
1530-
fontSize: 16,
1531-
fontFamily: 'Montserrat',
1532-
color: ThemeProvider.theme.textTheme
1533-
.bodyText1?.color),
1516+
color: ThemeProvider.theme.primaryColorLight,
1517+
child: InputDecorator(
1518+
decoration: InputDecoration(
1519+
border: OutlineInputBorder(
1520+
borderRadius: BorderRadius.only(
1521+
topRight: Radius.circular(8),
1522+
topLeft: Radius.circular(8),
1523+
bottomLeft: Radius.circular(8),
1524+
bottomRight: Radius.circular(8),
15341525
),
15351526
),
1536-
],
1527+
),
1528+
child: Row(
1529+
mainAxisAlignment: MainAxisAlignment.start,
1530+
children: [
1531+
Padding(
1532+
padding:
1533+
const EdgeInsets.only(left: 10.0),
1534+
child: Text(
1535+
"No rules defined.",
1536+
style: TextStyle(
1537+
fontSize: 16,
1538+
fontFamily: 'Montserrat',
1539+
color: ThemeProvider.theme.textTheme
1540+
.bodyText1?.color),
1541+
),
1542+
),
1543+
],
1544+
),
15371545
),
15381546
),
15391547
Padding(

0 commit comments

Comments
 (0)