Made the whole addServer button a button #24
1 changed files with 11 additions and 11 deletions
|
@ -364,7 +364,9 @@ class _ServerListState extends State<ServerList> {
|
|||
);
|
||||
});
|
||||
list.add(
|
||||
Container(
|
||||
GestureDetector(
|
||||
onTap: _addServerForm,
|
||||
child: Container(
|
||||
height: 75,
|
||||
width: MediaQuery.of(context).size.width,
|
||||
margin: EdgeInsets.fromLTRB(0, 0, 0, 2),
|
||||
|
@ -372,13 +374,11 @@ class _ServerListState extends State<ServerList> {
|
|||
decoration: BoxDecoration(
|
||||
color: Colors.white70,
|
||||
border: Border(bottom: BorderSide(color: Colors.grey, width: 2))),
|
||||
child: IconButton(
|
||||
icon: Icon(
|
||||
child: Icon(
|
||||
Icons.add,
|
||||
size: 42,
|
||||
color: Colors.black,
|
||||
),
|
||||
onPressed: _addServerForm,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue