Added the ability to edit Servers 2 #20

Merged
Hugo Bayer merged 1 commits from Hugo/111129012020/AddedTheAbilityToEditTheServer into master 2020-01-29 10:18:54 +00:00
1 changed files with 5 additions and 5 deletions

View File

@ -228,9 +228,8 @@ class _ServerListState extends State<ServerList> {
Padding(
padding: const EdgeInsets.all(8.0),
child: Row(children: [
Expanded(
child: RaisedButton(
child: Text("Confirm"),
RaisedButton(
child: Text("Cancel"),
onPressed: () {
if (_formKey.currentState.validate()) {
_formKey.currentState.save();
@ -238,7 +237,7 @@ class _ServerListState extends State<ServerList> {
}
},
),
),
Expanded(child:Text(' ')),
RaisedButton(
child: Text("Confirm"),
onPressed: () {
@ -249,6 +248,7 @@ class _ServerListState extends State<ServerList> {
server.uri = uri.text;
});
Navigator.of(context).pop();
_updateServerStatus(server);
}
},
)
@ -363,7 +363,7 @@ class _ServerListState extends State<ServerList> {
color: Colors.grey,
),
onPressed: () {
_removeServer(index);
_modifyServerForm(servers[index]);
},
),
]),