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

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: ^1.0.2

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: () async {
              return alert(context, title: Text('Alert'));
            },
          ),
        ),
      ),
    );
  }
}

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 {
              return alert(
                context,
                title: Text('Alert'),
                content: Text('It is fun!'),
                textOK: Text('Yes'),
              );
            },
          ),
        ),
      ),
    );
  }
}

Recommend Libraries #

Maintainer #

License #

MIT

9
likes
140
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

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on alert_dialog