我有一个简单的 Flutter 应用程序,我想删除所有以前的路线,但我想使用 GetX,怎么做?
现在它适用于
Navigator.of(context).pushNamedAndRemoveUntil('/home', (Route<dynamic> route) => false);
但我想知道与Get.to
或类似的正确方法
我有一个简单的 Flutter 应用程序,我想删除所有以前的路线,但我想使用 GetX,怎么做?
现在它适用于
Navigator.of(context).pushNamedAndRemoveUntil('/home', (Route<dynamic> route) => false);
但我想知道与Get.to
或类似的正确方法
Get.offAll(Home());
与命名路由:
Get.offAllNamed('/home');
有关文档的更多信息: https ://github.com/jonataslaw/getx/blob/master/documentation/en_US/route_management.md
如果要删除最后一页,请使用它。
Get.off(Home());
如果要删除所有以前的页面,请使用它。
Get.offAll(Home());
很简单
使用Get.reset()
这将删除所有以前的路线
您正在寻找Get.reset();
. 请检查此页面。
/// Clears all registered instances (and/or tags).
/// Even the persistent ones.
///
/// - [clearFactory] clears the callbacks registered by [Get.lazyPut()]
/// - [clearRouteBindings] clears Instances associated with Routes when using
/// [GetMaterialApp].
bool reset({bool clearFactory = true, bool clearRouteBindings = true}) =>
GetInstance().reset(
clearFactory: clearFactory, clearRouteBindings: clearRouteBindings);
尝试这个:
Get.offNamedUntil('home', (route) => false);