pubspec.yaml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. name: plugin_basic
  2. description: 基础包,原生的封装控件,扩展控件,自定义控件等。
  3. version: 1.0.0
  4. environment:
  5. sdk: '>=3.0.2 <4.0.0'
  6. dependencies:
  7. flutter_localizations:
  8. sdk: flutter
  9. flutter:
  10. sdk: flutter
  11. cupertino_icons: ^1.0.2
  12. shared:
  13. path: ../cs_shared
  14. router:
  15. path: ../cs_router
  16. widgets:
  17. path: ../cs_widgets
  18. cs_resources:
  19. path: ../cs_resources
  20. domain:
  21. path: ../cs_domain
  22. plugin_platform:
  23. path: ../cs_plugin_platform
  24. # Flutter 架构框架 https://github.com/jonataslaw/getx
  25. get: 4.6.5
  26. # package_info 应用相关信息
  27. package_info_plus: 4.1.0
  28. # 获取当前设备信息 https://github.com/fluttercommunity/plus_plugins/tree/main/packages/device_info_plus
  29. device_info_plus: 10.0.1
  30. # 跳转应用处理 https://github.com/flutter/plugins/tree/master_archive/packages/url_launcher/url_launcher
  31. # 例如:拨打电话,发送短信,发送邮件,跳转Whatsapp,打开本地文件等操作
  32. url_launcher: 6.1.10
  33. # 分享 https://plus.fluttercommunity.dev/docs/share_plus/usage
  34. share_plus: 7.1.0
  35. flutter:
  36. uses-material-design: true