toasty_snackbar 0.0.1
toasty_snackbar: ^0.0.1 copied to clipboard
To be able to show a custom snackbar easily.
import 'package:example/test_screen.dart';
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Toasty Snackbar',
home: Scaffold(
appBar: AppBar(
title: const Text('Toasty Snackbar'),
),
body: const TestScreen(),
),
);
}
}