toastification 0.0.1 toastification: ^0.0.1 copied to clipboard
Toastification is a Flutter package that allows you to easily show toast messages in your application.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:toastification/toastification.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 Home(),
);
}
}
class Home extends StatelessWidget {
const Home({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Toastification Example'),
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Align(
alignment: Alignment.bottomCenter,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Expanded(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: const Color(0xff1976d2),
),
onPressed: () {
toastification.show(
context: context,
autoCloseDuration: const Duration(seconds: 5),
title: 'Title',
);
},
child: const Text('Default'),
),
),
const SizedBox(width: 8),
Expanded(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: Colors.blue,
),
onPressed: () {
toastification.showInfo(
context: context,
autoCloseDuration: const Duration(seconds: 5),
title: 'Title');
},
child: const Text('Info'),
),
),
const SizedBox(width: 8),
Expanded(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: Colors.amberAccent,
),
onPressed: () {
toastification.showWarning(
context: context,
autoCloseDuration: const Duration(seconds: 5),
title: 'Title',
);
},
child: const Text('Warning'),
),
),
const SizedBox(width: 8),
Expanded(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: Colors.green,
),
onPressed: () {
toastification.showSuccess(
context: context,
autoCloseDuration: const Duration(seconds: 5),
title: 'Title',
);
},
child: const Text('Success'),
),
),
const SizedBox(width: 8),
Expanded(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: Colors.red,
),
onPressed: () {
toastification.showError(
context: context,
autoCloseDuration: const Duration(seconds: 5),
title: 'Title',
);
},
child: const Text('Error'),
),
),
],
),
),
),
);
}
}