如何在Flutter应用程序中使用特定的依赖包提交?

dba5bblo  于 2023-01-21  发布在  Flutter
关注(0)|答案(2)|浏览(106)

我从GitHub派生了一个包,并在上面进行了几次提交。我想在项目中使用一个特定的提交。如何在我的项目中使用一个特定的提交。

ie3xauqp

ie3xauqp1#

请参见Dart文档中的包依赖项〉依赖源〉Git包:

dependencies:
  kittens:
    git:
      url: git@github.com:munificent/kittens.git
      ref: some-branch

ref可以是Git允许的任何标识提交的东西。
因此,您可以将提交哈希值写成ref:的值,以使用特定的提交。

4dc9hkyq

4dc9hkyq2#

另一种方式是这样的:

flutter_cool_card_swiper:
    git:
      url: https://github.com/esmaeil-ahmadipour/flutter_cool_card_swiper

相关问题