top_snackbar

Creator: coderz1093

Last updated:

Add to Cart

Description:

top snackbar

Features #

Customizable styles including text, background color, leading icons and more
Responsive layout design, uses Media Queries to adapt on various screen sizes
Pre-defined methods for various message types with default styles and icons
Being an overlay, it doesn't disturb the widget tree or get affected by context change

Demo #

Usage #
Installation #
Add top_snackbar to your pubspec.yaml file:
dependencies:
top_snackbar: ^0.0.6 # Use the latest version
copied to clipboard
Import #
import 'package:flutter/material.dart';
import 'package:top_snackbar/top_snackbar.dart';
copied to clipboard
Custom Top Snackbar Widget #
To show a custom top snackbar message, use the CustomTopSnackbar.show method:
CustomTopSnackbar.show(
context,
'Your message here',
// Customize more additional properties as required (optional)
leadingIcon: Icons.copy,
backgroundColor: Colors.blue,
);
copied to clipboard
Pre-defined Message Types #
The library provides pre-defined methods for different message types with default styles and icons:

Info: Display an informational message.

CustomTopSnackbar.showInfo(context, 'Info message');
copied to clipboard

Success: Display a success message.

CustomTopSnackbar.showSuccess(context, 'Success message');
copied to clipboard

Error: Display an error message.

CustomTopSnackbar.showError(context, 'Error message');
copied to clipboard

Warning: Display a warning message.

CustomTopSnackbar.showWarning(context, 'Warning message');
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.