0

我正在使用 Flutter 在我的应用程序中创建一个注册部分,我正在尝试执行以下操作:

  1. 用户点击注册

  2. 用户在注册期间的任何阶段按下后退按钮

  3. 然后会弹出一个警告对话框,询问用户是否真的想离开注册过程

  4. 用户按

  5. 然后用户被带回应用程序的第一个(主)页面。

这适用于我单击注册后的第一页,但是当我到达第二页时,第 4 步让我保持在同一页面上,然后当我再次尝试时,它可以工作。但这不应该是这样。

经过一番调试,我发现了问题,但我不知道为什么会这样。

我在我的第二个代码片段中将问题作为注释写在函数末尾,onBackPressed()因此很清楚它在哪里中断:)。

这是我从main.dart导航到注册过程页面的代码:

Navigator.push(
    context,
    MaterialPageRoute(builder: (context) => SignUp())
)

然后对于注册过程中的每个页面,每当我进入下一页时,我都会执行 aNavigation.pop(context)将当前注册页面从堆栈中弹出Navigation.push(),然后执行 a以推送下一页。

以下是每个注册页面中后退按钮功能的代码:

bool backIsPressed = false;
Tools _tools = new Tools();

@override
void initState() {
  super.initState();
  BackButtonInterceptor.add(onBackPressed);
}

@override
void dispose() {
  BackButtonInterceptor.remove(onBackPressed);
  super.dispose();
}

bool onBackPressed(bool stopDefaultButtonEvent) {
  this.backIsPressed = !backIsPressed;

  if(backIsPressed) {
    _tools.yesNoAlert(
      context,
      "Going Back?",
      "Are you sure you want back? Changes made will not be saved.",
          () {
        this.backIsPressed = false;
        Navigator.pop(context, true);
      },
          () {
        this.backIsPressed = false;
        Navigator.pop(context, false);
      },
    ).then((res) {
      // ---------------- BREAKS HERE -----------------
      // "res" returns null the first time YES is pressed
      // But Navigation.pop(context, true) should return true according to Flutter's docs
      if(res) {
        Navigator.pop(context);
      }
    });

  }
  else {
    Navigator.pop(context);
  }

  return true;
}

最后是类yesOrNoAlert()中的函数Tools

Future<bool> yesNoAlert(BuildContext context, String title,
    String description, Function yesFunction, Function noFunction) {
  this._isDialogOpen = true;
  return showDialog(
      context: context,
      barrierDismissible: false,
      builder: (BuildContext context) {
        return AlertDialog(
          title: new Text(title),
          content: new Text(description),
          actions: <Widget>[
            new FlatButton(
              child: new Text('Yes'),
              onPressed: () {
                _isDialogOpen = false;
                yesFunction();
              },
            ),
            new FlatButton(
              child: new Text('No'),
              onPressed: () {
                _isDialogOpen = false;
                noFunction();
              },
            )
          ],
        );
      });
}

希望我解释得很好。

4

1 回答 1

1

如果你想回到第一页,而不是pop(),你可以在用户选择yes时使用popUntil()...不需要传递“res”

在此处了解更多信息:https ://api.flutter.dev/flutter/widgets/Navigator/popUntil.html

于 2019-10-20T08:56:53.473 回答