flutter_stack_toast 0.0.2 flutter_stack_toast: ^0.0.2 copied to clipboard
Stack toast flutter package
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:flutter_stack_toast/flutter_stack_toast.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
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> {
int index = 0;
OverlayState? overlay;
List<OverlayEntry> list = [];
List<IconData> icons = [
Icons.reset_tv_outlined,
Icons.add_alert_outlined,
Icons.woo_commerce,
Icons.h_mobiledata,
Icons.golf_course,
Icons.do_disturb_outlined,
];
@override
Widget build(BuildContext context) {
overlay ??= Overlay.of(context);
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
_simpleToast(),
const SizedBox(
height: 20,
),
_stackToast()
],
),
),
);
}
Widget _simpleToast() {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'Simple toast functions:',
),
const SizedBox(
height: 20,
),
ElevatedButton(
onPressed: () {
FlutterToast.showToast(context, "It is the toast number $index", Duration(seconds: 2));
index++;
},
child: const Text("Show Toast"),
),
const SizedBox(
height: 20,
),
ElevatedButton(
onPressed: () {
FlutterToast.showTextToast(
context,
Text(
"It is the toast number\n\n\n $index",
style: const TextStyle(
color: Colors.amber,
letterSpacing: 5,
fontSize: 14,
fontWeight: FontWeight.w600,
decoration: TextDecoration.none,
),
),
Duration(seconds: 2));
index++;
},
child: const Text("Show Text Toast"),
),
const SizedBox(
height: 20,
),
ElevatedButton(
onPressed: () {
FlutterToast.showCustomToast(
context,
Container(
width: 300,
height: 50,
color: Colors.amber,
child: Icon(
icons[Random().nextInt(icons.length)],
color: Colors.white,
),
),
Duration(seconds: 2));
index++;
},
child: const Text("Show Custom Toast"),
),
const SizedBox(
height: 20,
),
ElevatedButton(
onPressed: () {
FlutterToast.clear(context);
},
child: const Text("Clear simple toast"),
),
],
);
}
Widget _stackToast() {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'Stack toast functions:',
),
const SizedBox(
height: 20,
),
ElevatedButton(
onPressed: () {
FlutterToast.showStackToast(context, "It is the toast number $index");
index++;
},
child: const Text("Show Stack Toast"),
),
const SizedBox(
height: 20,
),
ElevatedButton(
onPressed: () {
FlutterToast.showStackTextToast(
context,
Text(
"It is the toast number $index",
style: const TextStyle(
color: Colors.amber,
letterSpacing: 5,
fontSize: 14,
fontWeight: FontWeight.w600,
decoration: TextDecoration.none,
),
));
index++;
},
child: const Text("Show Stack Text Toast"),
),
const SizedBox(
height: 20,
),
ElevatedButton(
onPressed: () {
FlutterToast.showStackCustomToast(
context,
Container(
width: 300,
height: 50,
color: Colors.amber,
child: Icon(
icons[Random().nextInt(icons.length)],
color: Colors.white,
),
));
index++;
},
child: const Text("Show Stack Custom Toast"),
),
const SizedBox(
height: 20,
),
ElevatedButton(
onPressed: () {
FlutterToast.clearStackToast(context);
},
child: const Text("Clear Stack toast."),
),
],
);
}
}