awesome_snackbar_content_new 0.1.2 copy "awesome_snackbar_content_new: ^0.1.2" to clipboard
awesome_snackbar_content_new: ^0.1.2 copied to clipboard

Uplift your snackbar experience with various alert messages i.e. success, failure, help or warning with unique UI design.

A package that lets you uplift your SnackBar or MaterialBanner experience in the app.

🛠 Attributes #

  • title: Top label that will be shown in the body
  • message: Body message reflecting some error message, success message etc.
  • color: Color of SnackBar body
  • contentType: ContentType class reflecting failure, success, help or warning.
  • inMaterialBanner: Simply configure the working according to showMaterialBanner

Overall Look'n Feel #

https://user-images.githubusercontent.com/43790152/200166529-51927c9d-66a6-4f76-b8f7-990680db2eba.mov

📱 Usage #

To use the package:

  • add the dependency to your pubspec.yaml file
dependencies:
  flutter:
    sdk: flutter

  awesome_snackbar_content_new: <latest-package>

Then import it in your flutter project:

import 'package:awesome_snackbar_content_new/awesome_snackbar_content_new.dart';

👀 SnackBar Looks #

Below are the looks of various types in package used as Snackbar

🔴 Failure #

✅ Success #

❔ Help #

⚠ Warning #

👀 Material Banner Looks #

Below are the looks of various types in package used as Snackbar

🔴 Failure #

✅ Success #

❔ Help #

⚠ Warning #

💻 Example #

Below is a basic example usage of the awesome_snackbar_content_new

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

class AweseomSnackBarExample extends StatelessWidget {
  const AweseomSnackBarExample({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Column(
          mainAxisSize: MainAxisSize.min,
          children: [
            ElevatedButton(
              child: const Text('Show Awesome SnackBar'),
              onPressed: () {
                final snackBar = SnackBar(
                  /// need to set following properties for best effect of awesome_snackbar_content_new
                  elevation: 0,
                  behavior: SnackBarBehavior.floating,
                  backgroundColor: Colors.transparent,
                  content: AwesomeSnackbarContent(
                    title: 'On Snap!',
                    message:
                        'This is an example error message that will be shown in the body of snackbar!',

                    /// change contentType to ContentType.success, ContentType.warning or ContentType.help for variants
                    contentType: ContentType.failure,
                  ),
                );

                ScaffoldMessenger.of(context)
                  ..hideCurrentSnackBar()
                  ..showSnackBar(snackBar);
              },
            ),
            const SizedBox(height: 10),
            ElevatedButton(
              child: const Text('Show Awesome Material Banner'),
              onPressed: () {
                final materialBanner = MaterialBanner(
                  /// need to set following properties for best effect of awesome_snackbar_content_new
                  elevation: 0,
                  backgroundColor: Colors.transparent,
                  forceActionsBelow: true,
                  content: AwesomeSnackbarContent(
                    title: 'Oh Hey!!',
                    message:
                        'This is an example error message that will be shown in the body of materialBanner!',

                    /// change contentType to ContentType.success, ContentType.warning or ContentType.help for variants
                    contentType: ContentType.success,
                    // to configure for material banner
                    inMaterialBanner: true,
                  ),
                  actions: const [SizedBox.shrink()],
                );

                ScaffoldMessenger.of(context)
                  ..hideCurrentMaterialBanner()
                  ..showMaterialBanner(materialBanner);
              },
            ),
          ],
        ),
      ),
    );
  }
}

🧑 Credits #

This packages has been created in reference to Abu Anwar (GDE Flutter) YouTube video. So, make sure to check his work!

3
likes
110
pub points
58%
popularity

Publisher

unverified uploader

Uplift your snackbar experience with various alert messages i.e. success, failure, help or warning with unique UI design.

Repository (GitHub)
View/report issues

License

(pending) (LICENSE)

Dependencies

flutter, flutter_localizations, flutter_svg

More

Packages that depend on awesome_snackbar_content_new