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

outdated

Alert Dialog Widget JS-LIKE for Flutter. Use alert dialog easy and simple for your flutter app.

Alert Dialog #

pub package

Alert Dialog Widget for Flutter(JS-LIKE). https://pub.dev/packages/alert_dialog

Installation #

Add pubspec.yaml #

dependencies:
  alert_dialog: lastest_version

Usage #

Basic #

import 'package:flutter/material.dart';

import 'package:alert_dialog/alert_dialog.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Welcome to Flutter'),
        ),
        body: Center(
          child: FlatButton(
            child: Text('Alert Dialog'),
            onPressed: () {
              alert(context);
            },
          ),
        ),
      ),
    );
  }
}

Custom Message #

import 'package:flutter/material.dart';

import 'package:alert_dialog/alert_dialog.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Welcome to Flutter'),
        ),
        body: Center(
          child: FlatButton(
            child: Text('Alert Dialog'),
            onPressed: () async {
              if (await alert(
                context,
                title: Text('Alert'),
                content: Text('Would you like to remove?'),
                textOK: Text('Yes'),
                textCancel: Text('No'),
              )) {
                return print('pressedOK');
              }
              return print('pressedCancel');
            },
          ),
        ),
      ),
    );
  }
}

Recommend Libraries #

Maintainer #

License #

MIT

9
likes
0
pub points
88%
popularity

Publisher

unverified uploader

Alert Dialog Widget JS-LIKE for Flutter. Use alert dialog easy and simple for your flutter app.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on alert_dialog