我正在尝试使用以下代码在Flutter项目上创建iOS CupertinoAlertDialog:

   showDialog(
      context: context,
      builder: (BuildContext context) => new CupertinoAlertDialog(
        title: new Text("Alert"),
        content: new Text("My alert message"),
        actions: [
          CupertinoDialogAction(isDefaultAction: true, child: new Text("Close"))
        ]));

但是,当调用此对话框时,我收到以下错误消息:
NoSuchMethodError: The getter 'alertDialogLabel' was called on null
Android AlertDialog可以正常工作。

此代码有什么问题?

编辑:

解决方案:CupertinoAlertDialog crash

只需将GlobalCupertinoLocalizations.delegate添加到您的MaterialApp中即可。

最佳答案

创建一个方法,然后从那里显示对话框

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      home: new MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => new _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  void displayDialog() {
    showDialog(
      context: context,
      builder: (BuildContext context) => new CupertinoAlertDialog(
            title: new Text("Alert"),
            content: new Text("My alert message"),
            actions: [
              CupertinoDialogAction(
                  isDefaultAction: true, child: new Text("Close"))
            ],
          ),
    );
  }

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      body: new Center(child: new Text("Welcome")),
      floatingActionButton: new FloatingActionButton(
        onPressed: displayDialog,
        child: new Icon(Icons.add),
      ),
    );
  }
}

10-07 19:18
查看更多