続行するためにログインする必要があるアプリケーションがあります(たとえば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.
サンプルコードはこちら
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"),
),
),
);
}
}
私は何か間違ったことをしていると思います。おそらく、ウィジェットのビルドを中止することが原因です。しかし、どうすればこれを達成できますか。
基本的に:「ログインしていない場合はログインページに移動し、ページに移動します」
ありがとう、Alexi
Navigator
呼び出しをラップしてみてください:
_Navigator.of(context).pushNamed("login");
_
addPostFrameCallback
でスケジュールされたコールバック内:
_SchedulerBinding.instance.addPostFrameCallback((_) {
Navigator.of(context).pushNamed("login");
});
_
ファイルの上部にこのインポートが必要になります。
_import 'package:flutter/scheduler.Dart';
_
別の方法として、ユーザーがログインしていない場合にMyHomePage
のbuild()
メソッドがLoginPage
の代わりにScaffold
を返すようにできるかどうかを検討してください。ユーザーがログインを完了する前にログインダイアログからバックアウトしたくないので、おそらく戻るボタンとの相互作用がよくなります。
もう1つのアプローチは、ログインチェックを実行することですbefore認証が必要な新しいページが開きます。メインページは「ようこそ」/情報ページとして予約されており、ユーザーがメニュー項目をタップすると、ログインチェックが実行されます。
ログイン:新しいページが開きます。ログアウト:ログインページが開きます。
私のために働く:)
@override
void initState() {
super.initState();
// it will navigate to login page as soon as this state is built
Timer.run(() {
Navigator.of(context).pushNamed("login");
});
}