Better border style #23
1 changed files with 7 additions and 14 deletions
|
@ -354,15 +354,12 @@ class _ServerListState extends State<ServerList> {
|
||||||
},
|
},
|
||||||
child: Container(
|
child: Container(
|
||||||
width: MediaQuery.of(context).size.width,
|
width: MediaQuery.of(context).size.width,
|
||||||
margin: EdgeInsets.all(2.0),
|
margin: EdgeInsets.fromLTRB(0, 0, 0, 2),
|
||||||
padding: EdgeInsets.all(10.0),
|
padding: EdgeInsets.all(10.0),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: Colors.white70,
|
color: Colors.white70,
|
||||||
border: Border.all(
|
border:
|
||||||
color: Colors.grey,
|
Border(bottom: BorderSide(color: Colors.grey, width: 2))),
|
||||||
width: 1,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
child: info),
|
child: info),
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
@ -370,15 +367,11 @@ class _ServerListState extends State<ServerList> {
|
||||||
Container(
|
Container(
|
||||||
height: 75,
|
height: 75,
|
||||||
width: MediaQuery.of(context).size.width,
|
width: MediaQuery.of(context).size.width,
|
||||||
margin: EdgeInsets.all(2.0),
|
margin: EdgeInsets.fromLTRB(0, 0, 0, 2),
|
||||||
padding: EdgeInsets.all(10.0),
|
padding: EdgeInsets.all(10.0),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: Colors.white70,
|
color: Colors.white70,
|
||||||
border: Border.all(
|
border: Border(bottom: BorderSide(color: Colors.grey, width: 2))),
|
||||||
color: Colors.grey,
|
|
||||||
width: 1,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
child: IconButton(
|
child: IconButton(
|
||||||
icon: Icon(
|
icon: Icon(
|
||||||
Icons.add,
|
Icons.add,
|
||||||
|
|
Loading…
Reference in a new issue