animated_snack_bar 0.1.0 copy "animated_snack_bar: ^0.1.0" to clipboard
animated_snack_bar: ^0.1.0 copied to clipboard

outdated

Easily show beautiful snack bars.

AnimatedSnackBar #

A Flutter package to show beautiful animated snackbars directly using overlay.

Features #

  • Material-UI snack bars

Getting started #

Import the package

import 'package:animated_snack_bar/animated_snack_bar.dart';

Usage #

Show material ui snackbar

AnimatedSnackBar.material(
    'This a snackbar with info type',
    type: AnimatedSnackBarType.info,
).show(context);

Show a custom snackbar

AnimatedSnackBar(
    builder: ((context) {
        return Container(
            padding: const EdgeInsets.all(8),
            color: Colors.amber,
            height: 50,
            child: const Text('A custom snackbar'),
        );
    }),
).show(context);
79
likes
0
pub points
96%
popularity

Publisher

unverified uploader

Easily show beautiful snack bars.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on animated_snack_bar