ios_dialog 0.0.2 copy "ios_dialog: ^0.0.2" to clipboard
ios_dialog: ^0.0.2 copied to clipboard

A Flutter package that provides a ios-styled dialog with a blurred background.

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();
      },
    ),
  ],
);
1
likes
125
points
28
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides a ios-styled dialog with a blurred background.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on ios_dialog