vk_alert_dialog 0.0.5 copy "vk_alert_dialog: ^0.0.5" to clipboard
vk_alert_dialog: ^0.0.5 copied to clipboard

Flutter package to display simple alert dialoges with different types, like SUCCESS, ERROR and INFO.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:vk_alert_dialog/vk_alert_dialog.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'AlertDialog Example'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            RaisedButton(
              onPressed: () async {
                await VKAlertDialog.successDialog(
                    icon: Icon(Icons.account_circle),
                    context: context,
                    title: 'Profile Update',
                    description: 'profile has been updated successfully',
                    buttonText: 'OK');
              },
              child: Text('Success Dialog'),
            ),
            SizedBox(
              height: 20.0,
            ),
            RaisedButton(
              onPressed: () async {
                await VKAlertDialog.errorDialog(
                    context: context,
                    title: 'Profile Update',
                    description: 'profile update failed, please try again',
                    buttonText: 'OK');
              },
              child: Text('Error Dialog'),
            ),
            SizedBox(
              height: 20.0,
            ),
            RaisedButton(
              onPressed: () async {
                await VKAlertDialog.infoDialog(
                    context: context,
                    title: 'Profile Update',
                    description: 'Something went wrong!',
                    buttonText: 'OK');
              },
              child: Text('Info Dialog'),
            ),
          ],
        ),
      ),
    );
  }
}
5
likes
40
pub points
39%
popularity

Publisher

unverified uploader

Flutter package to display simple alert dialoges with different types, like SUCCESS, ERROR and INFO.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on vk_alert_dialog