ios_dialog

Last updated:

0 purchases

ios_dialog Image
ios_dialog Images
Add to Cart

Description:

ios dialog

cupertino_blur_dialog #
A Flutter package that provides a ios-style dialog with a blurred background.
-by Raman Daksh
Usage #
import 'package:ios_dialog/ios_dialog.dart';

showCupertinoBlurDialog(
context: context,
title: Text('Dialog Title'),
content: Text('This is the dialog content.'),
actions: [
CupertinoDialogAction(
child: Text('Cancel'),
onPressed: () {
Navigator.of(context).pop();
},
),
CupertinoDialogAction(
child: Text('OK'),
onPressed: () {
Navigator.of(context).pop();
},
),
],
);
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.