Flutter => showDialog/AlertDialog => 未找到 MaterialLocalizations

标签 flutter

刚接触 Flutter,但印象非常深刻。 如果 PushNotification 通过 Firebase“onMessage”到达,我想显示一个对话框。

但每次我得到一个异常“没有找到 MaterialLocalizations”。如果试图显示我的对话框。 为了测试,我添加了一个 RaisedButton 来显示这个警报,但同样的问题。 也许有人可以帮助我。 非常感谢!!!

这是我的小应用程序的全部代码:

import 'dart:async';

import 'package:firebase_messaging/firebase_messaging.dart';

import 'package:flutter/material.dart';

void main() => runApp(Main());

class Main extends StatefulWidget {
  @override
  _MainState createState() => _MainState();
}

class _MainState extends State<Main> {
  final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();

  Widget _buildDialog(BuildContext context) {
    print("_buildDialog");
    return AlertDialog(
      content: Text("Item  has been updated"),
      actions: <Widget>[
        FlatButton(
          child: const Text('CLOSE'),
          onPressed: () {
            Navigator.pop(context, false);
          },
        ),
        FlatButton(
          child: const Text('SHOW'),
          onPressed: () {
            Navigator.pop(context, true);
          },
        ),
      ],
    );
  }

  void _showPushDialog() {
    print("DIALOG");
    showDialog<bool>(
      context: context,
      builder: (_) => _buildDialog(context),
    ).then((bool shouldNavigate) {
      if (shouldNavigate == true) {
        _navigateToPushDetail();
      }
    });
  }

  void _navigateToPushDetail() {
    print("TODO: Goto...");
  }

  @override
  void initState() {
    super.initState();
    _firebaseMessaging.configure(
      onMessage: (Map<String, dynamic> message) async {
        print("onMessage: $message");
        //_neverSatisfied();
        _showPushDialog();
      },
      onLaunch: (Map<String, dynamic> message) async {
        print("onLaunch: $message");
        _navigateToPushDetail();
      },
      onResume: (Map<String, dynamic> message) async {
        print("onResume: $message");
        _navigateToPushDetail();
      },
    );

    _firebaseMessaging.requestNotificationPermissions(
        const IosNotificationSettings(sound: true, badge: true, alert: true));
    _firebaseMessaging.onIosSettingsRegistered
        .listen((IosNotificationSettings settings) {
      print("Settings registered: $settings");
    });
    _firebaseMessaging.getToken().then((String token) {
      assert(token != null);
      print("Push Messaging token: $token");
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Welcome to Flutter'),
        ),
        body: new Material(
          child: Column(children: <Widget>[
            Center(
              child: Text('Hello World'),
            ),
            RaisedButton(
              onPressed: () {
                print("pushed?");
                _showPushDialog();
              },
              child: Text("press me"),
            )
          ]),
        ),
      ),
    );
  }
}

最佳答案

flutter 1.0,飞镖 2.x

此解决方案适用于 StatelessWidget 小部件和 StatefulWidget 小部件。

在顶部,您可以在声明中创建静态 navKey:

class MyApp extends StatefulWidget {
  final String title; // sample var you want to pass to your widget
  static final navKey = new GlobalKey<NavigatorState>();
  const MyApp({Key navKey, this.title}) : super(key: navKey);
  @override
  State<StatefulWidget> createState() => _MyAppState();
}

在布局部分你应该使用key:

return MaterialApp(
        navigatorKey:MyApp.navKey,
        title: widget.title,
        ...

因此,当您需要对话框或其他小部件的当前上下文时,您可以在状态部分执行以下操作:

@override
  void initState() {
  final context = MyApp.navKey.currentState.overlay.context;
  showMyCustomDialog(context);
  ...
  super.initState();
}

关于Flutter => showDialog/AlertDialog => 未找到 MaterialLocalizations,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54035175/

相关文章:

flutter - 我应该在 flutter 中为自定义小部件使用通用前缀吗?

python - 如何使用 gRPC 进行异步流式处理?

flutter - 如何在 Flutter 中更改 ColorTween 颜色

dart - Flutter - 如何在 flutter 的数字键盘中添加完成按钮

flutter - Dart格式在vscode中很奇怪

Flutter 行文本溢出

ios - Flutter iOS 应用程序在启动时显示白屏并在该屏幕上挂断

android - 尝试注册用户时出现错误

Flutter 圆角矩形边框,每边颜色不同

Flutter、外部 DLL 和 Pointer<Char> 与 Pointer<Utf8>