flutter snackbar
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text("Your Text"),
duration: Duration(milliseconds: 300),
));
flutter snackbar
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text("Your Text"),
duration: Duration(milliseconds: 300),
));
flutter getx snackbar
GetMaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('Snackbar')),
body: Center(
child: ElevatedButton(
onPressed: () {
Get.snackbar('snackbar title','snackbar message');
},
child: Text('Button')),
)
)
);
snackbar flutter
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
duration: const Duration(milliseconds: 5000),
content: const Text('Awesome Snackbar!'),
),
);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us