_showAboutDialog() {
showDialog(
context:context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("About"),
content: Text("Show me the code."),
actions: [
FlatButton(child: Text("cancel"),textColor: Colors.grey,onPressed: (){
Navigator.of(context).pop();
},),
FlatButton(child: Text("github"),onPressed: (){
_launchURL();
Navigator.of(context).pop();
},)
],
);
});
}
_showAboutDialog() {
showDialog(
context:context,
builder: (BuildContext context) {
return SimpleDialog(
title: Text("About"),
content: Text("Show me the code."),
actions: [
FlatButton(child: Text("cancel"),textColor: Colors.grey,onPressed: (){
Navigator.of(context).pop();
},),
FlatButton(child: Text("github"),onPressed: (){
_launchURL();
Navigator.of(context).pop();
},)
],
);
});
}