当前位置: 首页 > 知识库问答 >
问题:

在IntelliJ IDE中运行Dart示例项目时出错[重复]

易流觞
2023-03-14

谁能帮我弄明白问题出在哪里?我无法为下面的代码获得所需的输出?请检查下面的代码和日志

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      // This call to setState tells the Flutter framework that something has
      // changed in this State, which causes it to rerun the build method below
      // so that the display can reflect the updated values. If we changed
      // _counter without calling setState(), then the build method would not be
      // called again, and so nothing would appear to happen.
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    return Scaffold(
      appBar: AppBar(
        // Here we take the value from the MyHomePage object that was created by
        // the App.build method, and use it to set our appbar title.
        title: Text(widget.title),
      ),
      body: Center(
        // Center is a layout widget. It takes a single child and positions it
        // in the middle of the parent.
        child: Column(
          // Column is also layout widget. It takes a list of children and
          // arranges them vertically. By default, it sizes itself to fit its
          // children horizontally, and tries to be as tall as its parent.
          //
          // Invoke "debug painting" (press "p" in the console, choose the
          // "Toggle Debug Paint" action from the Flutter Inspector in Android
          // Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
          // to see the wireframe for each widget.
          //
          // Column has various properties to control how it sizes itself and
          // how it positions its children. Here we use mainAxisAlignment to
          // center the children vertically; the main axis here is the vertical
          // axis because Columns are vertical (the cross axis would be
          // horizontal).
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.display1,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}

输出

/users/chandramoulieddyporeddy/documents/flutter/bin/cache/dart-sdk/bin/dart-enable-asserts-enable-vm-service:61567/users/chandramoulieddyporeddy/documents/workspace/flutter_app1/lib/main.dart天文台监听http://127.0.0.1:61567/

lib/main.dart:1:警告:将其解释为包URI,'package:flutter_app1/main.dart'。lib/main.dart:3:8:错误:找不到:'dart:ui'导入'dart:ui';^file://users/chandramoulireddyporeddy/documents/flutter/packages/flutter/lib/src/material/animated_icons.dart:9:8:错误:找不到:'dart:ui'导入'dart:ui'作为ui显示画图、路径、画布;^file://users/chandramoulireddyporeddy/documents/flutter/packages/flutter/lib/src/material/animated_icons.dart:10:8:错误:Not found:'dart:ui'import'dart:ui'show lerpdouble;^file://users/chandramoulireddyporeddy/documents/flutter/packages/flutter/lib/src/material/arc.dart:6:8:错误:未找到:'dart:ui'import'dart:ui'show lerpdouble;^file://users/chandramoulireddyporeddy/documents/flutter/packages/flutter/lib/src/material/colors.dart:5:8:错误:未找到:'dart:ui'导入'dart:ui'显示颜色;^file://users/chandramoulireddyporeddy/documents/flutter/packages/flutter/lib/src/material/dialog.dart:6:8:错误:未找到:'dart:ui'导入'dart:ui';^file://users/chandramoulireddyporeddy/documents/flutter/packages/flutter/lib/src/material/input_border.dart:6:8:错误:Not found:'dart:ui'import'dart:ui'show lerpdouble;^file://users/chandramoulireddyporeddy/documents/flutter/packages/flutter/lib/src/material/input_decorator.dart:6:8:错误:Not found:'dart:ui'import'dart:ui'show lerpdouble;^file://users/chandramoulireddyporeddy/documents/flutter/packages/flutter/lib/src/material/mergeable_material.dart:5:8:错误:Not found:'dart:ui'import'dart:ui'show lerpdouble;^file://users/chandramoulireddyporeddy/documents/flutter/packages/flutter/lib/src/Material/shadows.dart:5:8:错误:找不到:'dart:ui'导入'dart:ui'显示颜色,偏移量;^

进程结束,退出代码为254

共有1个答案

桑坚
2023-03-14

可能重复的Dart:UI:1:Error:未找到:Dart:UI。颤振/飞镖:

当你运行应用程序时,应该有两个运行配置,运行带有Flutter图标的一个

 类似资料:
  • 谁能帮我了解一下问题出在哪里?我无法为下面的代码获得所需的输出?请查看下面的代码和日志 进程已完成,退出代码为254

  • 我克隆了这个存储库https://github.com/TomasMikula/RichTextFX 一切都很好,智力也没有抱怨。 然后我尝试在intelliJ中运行CloneDemo(包括参数),结果就是这样。有什么想法吗? 演示模块的gradle脚本构建了一个fatJar。但是intelliJ没有使用这个。当用jar运行程序时,它不会出现问题。

  • 请看上图。 我该如何解决这个错误? 我的 Windows 电脑有 4 GB 内存,而我的 C 盘中只有 6GB 的可用空间。

  • grailsVersion=3.3.0有一个问题。M1和gradlewrappersion=3.0。每当我运行该项目时,我都会遇到以下错误。 |解析依赖项。请稍候。。。 配置成功 总时间: 13.543秒|运行应用程序...2017-05-29 22:08:46.634错误 --- [ 主]o.s.boot.SpringApplication :应用程序启动失败 java.lang.NoClass

  • 我已经将hadoop2和HBase0.98与phoenix集成在一起,并键入命令phoenix shell starts,但是当我尝试通过以下命令运行apache phoenix示例时应该是主人写的。检查'zookeeper.znode.parent'中配置的值。可能与主服务器中配置的不匹配。 我在单一模式下使用Hadoop2.6,在psudo分布式模式下使用HBase0.98,另外我没有显式安装

  • 下面是我的Gridle文件,我尝试了stackoverflow other的问题answare中所有可能的解决方案,但仍然显示相同的结果。 错误: 错误:(3)错误检索项目的父:没有找到与给定名称'android: Text外观匹配的资源。材料。小部件。按钮。无国界。有色'。 网格: 这里是使用XML的地方: 将minsdkversion更改为11时出现其他一些错误 错误:任务“:app:proc