Flutter重定向到initState上的页面

Ale*_*ard 19 routes dart flutter

我有一个应用程序,您需要登录才能继续(例如使用Google).

我想在需要验证时重定向用户.

但是,当我跑一个Navigator.of(context).pushNamed("myroute").我收到以下错误:

 ??? EXCEPTION CAUGHT BY WIDGETS LIBRARY ????????????????????????????????????????????????????????????
I/flutter ( 5624): The following assertion was thrown building _ModalScopeStatus(active):
I/flutter ( 5624): setState() or markNeedsBuild() called during build.
I/flutter ( 5624): This Overlay widget cannot be marked as needing to build because the framework is already in the
I/flutter ( 5624): process of building widgets. A widget can be marked as needing to be built during the build phase
I/flutter ( 5624): only if one of its ancestors is currently building. This exception is allowed because the framework
I/flutter ( 5624): builds parent widgets before children, which means a dirty descendant will always be built.
I/flutter ( 5624): Otherwise, the framework might not visit this widget during this build phase.
Run Code Online (Sandbox Code Playgroud)

这是一个示例代码

void main() {
    runApp(new MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new MyHomePage(title: 'Flutter Demo Home Page'),
      routes: <String, WidgetBuilder> {
        "login" : (BuildContext context) => new LoginPage(),
      }
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);
  final String title;

  @override
  _MyHomePageState createState() => new _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  int _counter = 0;

    @override
    void initState() {
      super.initState();

      if(!isLoggedIn) {
        print("not logged in, going to login page");
        Navigator.of(context).pushNamed("login");
      }

    }


  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  void test() {
    print("hello");
  }

  @override
  Widget build(BuildContext context) {

    return new Scaffold(
      appBar: new AppBar(
        title: new Text(widget.title),
      ),
      body: new Center(
        child: new Text(
          'Button tapped $_counter time${ _counter == 1 ? '' : 's' }.',
        ),
      ),
      floatingActionButton: new FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: new Icon(Icons.add),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }

}

class LoginPage extends StatefulWidget {
  LoginPage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _LoginPageState createState() => new _LoginPageState();
}

class _LoginPageState extends State<LoginPage> {
  @override
  Widget build(BuildContext context) {
    print("building login page");
    return new Scaffold(
      appBar: new AppBar(
        title: new Text("Sign up / Log In"),
      ),
      ),
    );
  }
}
Run Code Online (Sandbox Code Playgroud)

我想我做错了什么,也许中止小部件构建导致了这个问题.但是,我怎么能实现这一点.

基本上:"我继续我的页面,如果没有登录,请转到登录页面"

谢谢,Alexi

Col*_*son 34

尝试打包你的Navigator电话:

Navigator.of(context).pushNamed("login");
Run Code Online (Sandbox Code Playgroud)

在安排的回调中addPostFrameCallback:

SchedulerBinding.instance.addPostFrameCallback((_) {
  Navigator.of(context).pushNamed("login");
});
Run Code Online (Sandbox Code Playgroud)

您需要在文件顶部进行此导入:

import 'package:flutter/scheduler.dart';
Run Code Online (Sandbox Code Playgroud)

作为备选方案,考虑一下,如果你可以只具有MyHomePagebuild()方法返回一个LoginPage代替Scaffold,如果用户没有登录,这可能会与之交互的返回按钮更好,因为你不希望用户中途退出登录对话框中在他们完成登录之前.

  • 你的第二种选择似乎比第一种更好.我用过这个.感谢Collin,非常有用的答案(一如既往) (6认同)

Cop*_*oad 17

覆盖initState()功能并使用以下任何一种:

  • @Paktalin`导入 dart:异步;` (2认同)