Added the ability to edit Servers 2 #20
1 changed files with 5 additions and 5 deletions
|
@ -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]);
|
||||
},
|
||||
),
|
||||
]),
|
||||
|
|
Loading…
Reference in a new issue