an_toast

Creator: coderz1093

Last updated:

0 purchases

an_toast Image
an_toast Images

Languages

Categories

Add to Cart

Description:

an toast

A custom-drawn Flutter toast library that does not rely on native implementation.
Usage #
class ToastDemo extends StatefulWidget {
const ToastDemo({super.key});

@override
State<ToastDemo> createState() => _ToastDemoState();
}

class _ToastDemoState extends State<ToastDemo> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Toast Demo'),
),
body: ListView(
children: [
TextButton(
onPressed: () {
Toast.show('当前的toast样式及动画');
},
child: const Text('显示Toast'),
),
TextButton(
onPressed: () {
Toast.show('当前的toast样式及动画', duration: Toast.DURATION_LONG);
},
child: const Text('显示Toast'),
),
],
),
);
}
}
copied to clipboard
See example
for detailed.
Issues #
If you encounter issues, here are some tips for debug, if nothing helps report
to issue tracker on GitHub:

License

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

Files In This Product:

Customer Reviews

There are no reviews.