Flutter-如何导航到异步值的另一个页面

问题描述 投票:0回答:1

我正在尝试在应用程序初始启动时显示启动屏幕,直到正确检索所有数据为止。一旦出现,我想导航到应用程序的主屏幕。

不幸的是,我找不到触发运行这种导航的方法的好方法。

这是我用来测试这个想法的代码。具体来说,我想在变量Navigator.pushNamed(context, 'home');变为true时运行命令shouldProceed。现在,我唯一想到的方法是显示一个需要按下以触发导航代码的按钮:

import 'package:flutter/material.dart';
import 'package:catalogo/src/navigationPage.dart';

class RouteSplash extends StatefulWidget {
  @override
  _RouteSplashState createState() => _RouteSplashState();
}

class _RouteSplashState extends State<RouteSplash> {
  ValueNotifier<bool> buttonTrigger;
  bool shouldProceed = false;

  _fetchPrefs() async { //this simulates the asynchronous function
    await Future.delayed(Duration(
        seconds:
            1)); // dummy code showing the wait period while getting the preferences
    setState(() {
      shouldProceed = true; //got the prefs; ready to navigate to next page.
    });
  }

  @override
  void initState() {
    super.initState();
    _fetchPrefs(); // getting prefs etc.
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: shouldProceed
            ? RaisedButton(
                onPressed: () {
                  print("entered Main");
                  Navigator.pushNamed(context, 'home'); // <----- I want this to be triggered by shouldProceed directly
                },
                child: Text("Continue"),
              )
            : CircularProgressIndicator(), //show splash screen here instead of progress indicator
      ),
    );
  }
}

因此,简而言之,当应该进行更改时,如何触发运行导航代码的功能?

flutter triggers setstate
1个回答
0
投票

您所要做的就是在获得首选项之后,只需导航至屏幕并使用build方法来构建进度指示器。

尝试一下:

_fetchPrefs() async {
  await Future.delayed(Duration(seconds: 1));
  Navigator.of(context).pushNamed("home"); //stateful widgets give you context
}

这是您的新构建方法:

@override
Widget build(BuildContext context) {
  return Center(child: CircularProgressIndicator());
}

我制作了一个DartPad来说明:https://dartpad.dartlang.org/431fcd9a1ea5748a82506f13be042e85

© www.soinside.com 2019 - 2024. All rights reserved.