美文网首页
Could not find package "build_ru

Could not find package "build_ru

作者: Dove_iOS | 来源:发表于2019-11-27 12:03 被阅读0次

flutter报错: Could not find package "build_runner". Did you forget to add a dependency?

dependencies:
  flutter:
    sdk: flutter

  # The following adds the Cupertino Icons font to your application.
  # Use with the CupertinoIcons class for iOS style icons.
  cupertino_icons: ^0.1.2
  json_annotation: ^3.0.0

原因: 未添加 build_runner

dependencies:
  flutter:
    sdk: flutter

  # The following adds the Cupertino Icons font to your application.
  # Use with the CupertinoIcons class for iOS style icons.
  cupertino_icons: ^0.1.2
  build_runner: ^1.7.0
  json_annotation: ^3.0.0

相关文章

网友评论

      本文标题:Could not find package "build_ru

      本文链接:https://www.haomeiwen.com/subject/rzhpwctx.html