flutter: how to show SnackBar after page load?
return MaterialApp(
title: 'SnackBar Demo',
home: Scaffold(
appBar: AppBar(
title: const Text('SnackBar Demo'),
),
body: HomePage(),
),
);
SnackBar snackBar = SnackBar(content: Text("Order not found: $orderId'));
ScaffoldMessenger.of(context).showSnackBar(snackBar);
Trying to show a message after page is loaded from server, not inside an action handler like
onpress() {
// show SnackBar: works here
}.
On web, we can execute a script on page load.
To show a
SnackBar
after a page load in Flutter, you can use theaddPostFrameCallback
method ofWidgetsBinding.instance
. This method allows you to schedule a callback for the end of this frame, when the build is complete.Example :