Skip to content

Instantly share code, notes, and snippets.

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