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

A highly customizable, powerful and easy-to-use alert dialog for Flutter.

example/lib/main.dart

import 'package:example/views/alert_view.dart';
import 'package:example/widgets/custom_theme.dart';
import 'package:flutter/material.dart';

void main() => runApp(
      CustomTheme(
        initialThemeKey: MyThemeKeys.LIGHT,
        child: MyApp(),
      ),
    );

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: CustomTheme.of(context),
      home: AlertView(),
    );
  }
}
22
likes
40
pub points
16%
popularity

Publisher

unverified uploader

A highly customizable, powerful and easy-to-use alert dialog for Flutter.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, google_fonts

More

Packages that depend on sk_alert_dialog