📜  返回推送后颤动 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:06.577000             🧑  作者: Mango

代码示例1
Navigator.push(context, MaterialPageRoute(builder:(_) => PageB())).then((value) {
  // you have come back to the pageA, now perform your logic 
  callThisMethod();
});