mini_toast 1.0.0
mini_toast: ^1.0.0 copied to clipboard
A lightweight and easy-to-use toast notification library for Flutter
[DEMO IMAGE]
MiniToast ๐ #
A lightweight, flexible toast notification library for Flutter that automatically handles varying content sizes and provides smooth animations. MiniToast makes it simple to display beautiful, stacked notifications in your Flutter apps with minimal setup.
โจ Features #
- ๐ฏ Smart Positioning: Automatically handles varying toast heights and stacks them properly
- ๐จ Variants with Icons:
- ๐ข Success toasts with check icon
- ๐ด Error toasts with cancel icon
- ๐ต Info toasts with info icon
- ๐ Flexible Placement:
- Vertical: Top or bottom
- Horizontal: Left, center, or right
- โก Smooth Animations:
- Fade in/out
- Customizable slide directions
- ๐๏ธ Rich Customization:
- Duration control
- Custom text styles
- Icon colors
- Spacing and margins
- Shadow and border radius
- ๐ฆ Simple Integration: Just wrap your app and start showing toasts
๐ฆ Installation #
Add MiniToast to your pubspec.yaml
:
dependencies:
mini_toast: ^1.0.0
copied to clipboard
๐ Usage #
1. Wrap Your App #
First, wrap your app with ToastOverlayWrapper
:
void main() {
runApp(
ToastOverlayWrapper(
child: MaterialApp(
home: MyHomePage(),
),
),
);
}
copied to clipboard
2. Show Toasts #
Use the MiniToast.instance
to display toasts:
// Success toast
MiniToast.instance.show(
message: 'Operation completed successfully!',
variant: ToastVariant.success,
);
// Error toast
MiniToast.instance.show(
message: 'Something went wrong',
variant: ToastVariant.error,
);
// Info toast
MiniToast.instance.show(
message: 'New message received',
variant: ToastVariant.info,
);
copied to clipboard
3. Customize Appearance #
Configure global toast settings:
MiniToast.instance.setConfig(
MiniToastConfig(
verticalPosition: ToastVerticalPosition.bottom,
horizontalPosition: ToastHorizontalPosition.center,
displayDuration: const Duration(seconds: 3),
animationDuration: const Duration(milliseconds: 300),
toastSpacing: 8.0,
textStyle: const TextStyle(fontSize: 16),
iconColor: Colors.white,
// ... other customization options
),
);
copied to clipboard
๐ฏ Complete Example #
import 'package:flutter/material.dart';
import 'package:mini_toast/mini_toast.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return ToastOverlayWrapper(
child: MaterialApp(
home: Scaffold(
appBar: AppBar(title: const Text('MiniToast Demo')),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton(
onPressed: () => MiniToast.instance.show(
message: 'Success!',
variant: ToastVariant.success,
),
child: const Text('Show Success Toast'),
),
ElevatedButton(
onPressed: () => MiniToast.instance.show(
message: 'Error occurred!',
variant: ToastVariant.error,
),
child: const Text('Show Error Toast'),
),
ElevatedButton(
onPressed: () => MiniToast.instance.show(
message: 'Just FYI!',
variant: ToastVariant.info,
),
child: const Text('Show Info Toast'),
),
],
),
),
),
),
);
}
}
copied to clipboard
๐ง Configuration Options #
The MiniToastConfig
class provides these customization options:
textStyle
: Custom text style for toast messagesverticalPosition
: Top or bottom placementhorizontalPosition
: Left, center, or right alignmentslideDirection
: Animation slide directiondisplayDuration
: How long toasts remain visibleanimationDuration
: Length of show/hide animationstoastSpacing
: Space between stacked toastsmargin
: Edge margins for toast positioningboxShadow
: Customizable shadow effectborderRadius
: Corner roundingcontentPadding
: Inner paddingiconColor
: Color for variant icons
๐งพ License #
This project is licensed under the Apache License.
๐ค Contributing #
Found a bug or have an idea for a new feature? Feel free to open an issue or submit a pull request.