your_snackbar 1.0.1
your_snackbar: ^1.0.1 copied to clipboard
Snackbar with customizable feature
Your SnackBar #
Flutter customizable SnackBar
Usage #
Add function "showYourSnackbar" for show customizable snackbar
onPressed: () => showYourSnackbar(
context,
height: 80,
child: const Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(Icons.airplane_ticket, color: Colors.white),
SizedBox(width: 20),
Text(
'Ticket Added',
style: TextStyle(color: Colors.white),
),
],
),
),
