z_dialog 1.0.0 copy "z_dialog: ^1.0.0" to clipboard
z_dialog: ^1.0.0 copied to clipboard

outdated

A new Flutter dialog package.

z_dialog #

ZDialog pub package

z_dialog is a brief Dialog

Example #

build

build

Getting started #

dependencies:
  z_dialog: ^1.0.0

Usage #

TODO: Include short and useful examples for package users. Add longer examples to /example folder.

ZDialog.showAlert(context,
    title: 'Flutter',
    content:
        'Flutter is Google UI toolkit for building beautiful, natively compiled applications for mobile, web, desktop, and embedded devices from a single codebase.',
    actions: <Widget>[
        ZButton(
            isDark: true,
            text: '确定',
            onPressed: () {
                Navigator.of(context).pop();
            },
        ),
        ZButton(
            isDark: false,
            text: '取消',
            onPressed: () {
                Navigator.of(context).pop();
            },
        ),
    ]);

ZAlert.showBottomDialog(context, options: ['Ring','Koa','Flutter'],
    onClick: (i, value) {
    Navigator.of(context).pop();
});

information #

z_dialog Much of the code references the Flutter Dialog

7
likes
0
points
8
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter dialog package.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on z_dialog