我们可以使用一个 Repo 中的多个 flutter 插件吗?

can we use multiple plugins of flutter from one Repo?

我被困在这一点上,我为我的新 flutter 应用程序实现了多个插件。 但我想将所有这些插件放在一个 repo 中并将它们作为单独的插件引用

我的插件是

我的仓库名称为 flutter_plugins

如果 Link 我的 Repo 与下面的相似

https://maja.azure.com/ramraj/flutter_plugins

所有插件文件夹都放在这个repo

我在我的 Pubspec.yaml

中尝试以类似于以下方式指向这些包
plugin_custom1:
    git:
      url: https://maja.azure.com/ramraj/flutter_pluginspath=%2Fplugin_custom1

然后我在获取包裹时遇到以下错误

(OS Error: The filename, directory name, or volume label syntax is incorrect.

提前致谢

我找到了答案

plugin_custom1:
    git:
      url: https://maja.azure.com/ramraj/flutter_plugins
      path:plugin_custom1

请参考以下Flutter文档 https://flutter.dev/docs/development/packages-and-plugins/using-packages#dependencies-on-unpublished-packages