📅  最后修改于: 2022-03-11 14:48:03.038000             🧑  作者: Mango
@override
Widget build(BuildContext context) {
executeAfterBuild();
return Container();
}
Future executeAfterBuild() async {
// this code will get executed after the build method
// because of the way async functions are scheduled
}