overlay_toast_message 1.0.2 overlay_toast_message: ^1.0.2 copied to clipboard
A flutter widget of overlay Toast Message.
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:overlay_toast_message/overlay_toast_message.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ElevatedButton(
onPressed: onTapCustomBtn,
child: const Text('Show Custom Toast'),
),
ElevatedButton(
onPressed: onTapShowToastBtn,
child: const Text('Show Toast'),
),
ElevatedButton(
onPressed: onTapDismissAllAndShowToastBtn,
child: const Text('Dismiss All And Show Toast'),
),
],
),
),
);
}
void onTapShowToastBtn() {
OverlayToastMessage.show(
context,
textMessage: 'Toast Message',
);
}
void onTapDismissAllAndShowToastBtn() {
OverlayToastMessage.show(
context,
dismissAll: true,
textMessage: 'Dismiss All And Show Toast Message',
);
}
void onTapCustomBtn() {
OverlayToastMessage.show(
context,
widget: Padding(
padding: const EdgeInsets.symmetric(horizontal: 15),
child: Container(
decoration: BoxDecoration(boxShadow: const [
BoxShadow(
spreadRadius: 3,
blurRadius: 10,
offset: Offset(0, 5),
color: Colors.black12,
)
], borderRadius: BorderRadius.circular(15), color: Colors.white),
child: Padding(
padding: const EdgeInsets.all(15),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: const [
Icon(Icons.ac_unit),
SizedBox(width: 15),
Expanded(
child: Text(
'Custom Toast',
style: TextStyle(fontWeight: FontWeight.w500, fontSize: 18),
textAlign: TextAlign.start,
maxLines: 2,
),
),
],
),
),
),
),
);
}
}