4

我有一个简单的 Flutter 应用程序,我想删除所有以前的路线,但我想使用 GetX,怎么做?

现在它适用于

Navigator.of(context).pushNamedAndRemoveUntil('/home', (Route<dynamic> route) => false);

但我想知道与Get.to或类似的正确方法

4

5 回答 5

17
Get.offAll(Home());

与命名路由:

Get.offAllNamed('/home');

有关文档的更多信息: https ://github.com/jonataslaw/getx/blob/master/documentation/en_US/route_management.md

于 2020-10-18T06:09:26.787 回答
10

如果要删除最后一页,请使用它。

Get.off(Home());

如果要删除所有以前的页面,请使用它。

Get.offAll(Home());

很简单

于 2020-11-04T17:14:22.043 回答
4

使用Get.reset()这将删除所有以前的路线

于 2020-11-06T07:30:25.943 回答
1

您正在寻找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);
于 2020-10-16T21:11:50.347 回答
0

尝试这个:

 Get.offNamedUntil('home', (route) => false);
于 2021-06-04T20:34:18.043 回答