如何在颤振中增加sqflite依赖?

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.0
  sqflite: any
  english_words: "^3.1.0"

最佳答案

这是正确的方法。尝试运行(再次)。
您可以指定准确版本为packages get、范围为sqflite: ^0.8.9或仅为sqflite: >=0.8.0 <0.9.9的版本,这将始终为您提供最新版本。
有一个深度guide on this topic可用。

10-08 15:08