我正在尝试导入有效的包,但 flutter 无法识别它们

问题描述 投票:0回答:1

我正在使用 VSCode,并且我尝试使用传感器加包,如文档中所示:The code copied exactly from documentation

我试图找到解决方案,但找不到任何解决方案,如果有人可以帮助我,我会很高兴..

我正在尝试使用陀螺仪信息来检测手机是否在移动。不幸的是,这不起作用,我遇到了一堆错误。

flutter dart mobile-development
1个回答
0
投票

仅导入代码是不够的。您还必须向您的

pubspec.yaml
文件添加依赖项。

这可以通过三种方式完成:

  1. 在命令行上运行

    flutter pub add sensors_plus
    ,这将安装该软件包并将其添加到您的
    pubspec.yaml

    中的依赖项中
  2. 使用dart插件。按

    ctrl-shift-p
    (在 Mac 上为
    command-shift-p
    )运行命令,然后键入
    dart dependency
    ,这将选择
    dart: add dependency
    命令,按 Enter 键,然后键入
    sensors_plus

  3. 手动将以下代码添加到您的

    pubspec.yaml
    然后运行
    flutter pub get
    :

dependencies:
  sensors_plus: ^5.0.1

请注意,您几乎肯定已经有一个

dependencies
部分,因此如果您选择这条路线,您应该简单地将sensors_plus 行添加到该部分。

© www.soinside.com 2019 - 2024. All rights reserved.