Navigator of 和 Navigator pop 的区别
Navigator of and Navigator pop differences
任何人都可以告诉我在关闭模式时使用 Navigator.of(context).pop()
与 Navigator.pop(context)
之间是否有区别(使用 rflutter_alert 中的 showDialog 或 Alert),因为两者都关闭了模式?
感谢阅读!
@optionalTypeArgs
static void pop<T extends Object>(BuildContext context, [ T result ]) {
Navigator.of(context).pop<T>(result);
}
Navigator.pop(context)
调用 Navigator.of(context).pop()
任何人都可以告诉我在关闭模式时使用 Navigator.of(context).pop()
与 Navigator.pop(context)
之间是否有区别(使用 rflutter_alert 中的 showDialog 或 Alert),因为两者都关闭了模式?
感谢阅读!
@optionalTypeArgs
static void pop<T extends Object>(BuildContext context, [ T result ]) {
Navigator.of(context).pop<T>(result);
}
Navigator.pop(context)
调用 Navigator.of(context).pop()