Skip to content

Instantly share code, notes, and snippets.

@DevKhalyd
Created June 17, 2020 04:49
Show Gist options
  • Save DevKhalyd/fb0d21d54c0f7fb3f933de8942bb7785 to your computer and use it in GitHub Desktop.
Save DevKhalyd/fb0d21d54c0f7fb3f933de8942bb7785 to your computer and use it in GitHub Desktop.
Material Dialog Flutter
AlertDialog(
title: Text(title),
content: Text(description),
elevation: 16.0,
actions: [
FlatButton(onPressed: onNegativePressed, child: Text('No')),
FlatButton(onPressed: onAffirmativePressed, child: Text('Yes')),
],
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment