Skip to content

Commit 8802adc

Browse files
committed
fix boundary in existing rules field
1 parent 3975ebb commit 8802adc

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
@@ -1513,31 +1513,35 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
15131513
key: Key('No rules defined'),
15141514
height: 60,
15151515
width: double.infinity,
1516-
decoration: BoxDecoration(
1517-
border: Border.all(color: Colors.white38),
1518-
borderRadius: BorderRadius.only(
1519-
topRight: Radius.circular(8),
1520-
topLeft: Radius.circular(8),
1521-
bottomLeft: Radius.circular(8),
1522-
bottomRight: Radius.circular(8),
1523-
),
1524-
color: ThemeProvider.theme.primaryColorLight,
1525-
),
1526-
child: Row(
1527-
mainAxisAlignment: MainAxisAlignment.start,
1528-
children: [
1529-
Padding(
1530-
padding: const EdgeInsets.only(left: 10.0),
1531-
child: Text(
1532-
"No rules defined.",
1533-
style: TextStyle(
1534-
fontSize: 16,
1535-
fontFamily: 'Montserrat',
1536-
color: ThemeProvider.theme.textTheme
1537-
.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),
15381525
),
15391526
),
1540-
],
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+
),
15411545
),
15421546
),
15431547
Padding(

0 commit comments

Comments
 (0)