pubspec.yaml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. name: vnote_device_plugin_example
  2. description: Demonstrates how to use the vnote_device_plugin plugin.
  3. # The following line prevents the package from being accidentally published to
  4. # pub.dev using `flutter pub publish`. This is preferred for private packages.
  5. publish_to: 'none' # Remove this line if you wish to publish to pub.dev
  6. environment:
  7. sdk: ">=2.19.0 <3.0.0"
  8. # Dependencies specify other packages that your package needs in order to work.
  9. # To automatically upgrade your package dependencies to the latest versions
  10. # consider running `flutter pub upgrade --major-versions`. Alternatively,
  11. # dependencies can be manually updated by changing the version numbers below to
  12. # the latest version available on pub.dev. To see which dependencies have newer
  13. # versions available, run `flutter pub outdated`.
  14. dependencies:
  15. flutter:
  16. sdk: flutter
  17. vnote_device_plugin:
  18. # When depending on this package from a real application you should use:
  19. # vnote_device_plugin: ^x.y.z
  20. # See https://dart.dev/tools/pub/dependencies#version-constraints
  21. # The example app is bundled with the plugin so we use a path dependency on
  22. # the parent directory to use the current plugin's version.
  23. path: ../
  24. # The following adds the Cupertino Icons font to your application.
  25. # Use with the CupertinoIcons class for iOS style icons.
  26. cupertino_icons: ^1.0.2
  27. get: ^4.6.5
  28. flutter_staggered_grid_view: 0.6.1
  29. path_provider: 2.1.0
  30. fis_common:
  31. git:
  32. url: http://git.ius.plus:88/Project-Wing/fis_lib_common.git
  33. ref: abe0f000c4
  34. dev_dependencies:
  35. integration_test:
  36. sdk: flutter
  37. flutter_test:
  38. sdk: flutter
  39. # The "flutter_lints" package below contains a set of recommended lints to
  40. # encourage good coding practices. The lint set provided by the package is
  41. # activated in the `analysis_options.yaml` file located at the root of your
  42. # package. See that file for information about deactivating specific lint
  43. # rules and activating additional ones.
  44. flutter_lints: ^2.0.0
  45. # For information on the generic Dart part of this file, see the
  46. # following page: https://dart.dev/tools/pub/pubspec
  47. # The following section is specific to Flutter packages.
  48. flutter:
  49. # The following line ensures that the Material Icons font is
  50. # included with your application, so that you can use the icons in
  51. # the material Icons class.
  52. uses-material-design: true
  53. # To add assets to your application, add an assets section, like this:
  54. assets:
  55. - assets/
  56. # - images/a_dot_burr.jpeg
  57. # - images/a_dot_ham.jpeg
  58. # An image asset can refer to one or more resolution-specific "variants", see
  59. # https://flutter.dev/assets-and-images/#resolution-aware
  60. # For details regarding adding assets from package dependencies, see
  61. # https://flutter.dev/assets-and-images/#from-packages
  62. # To add custom fonts to your application, add a fonts section here,
  63. # in this "flutter" section. Each entry in this list should have a
  64. # "family" key with the font family name, and a "fonts" key with a
  65. # list giving the asset and other descriptors for the font. For
  66. # example:
  67. # fonts:
  68. # - family: Schyler
  69. # fonts:
  70. # - asset: fonts/Schyler-Regular.ttf
  71. # - asset: fonts/Schyler-Italic.ttf
  72. # style: italic
  73. # - family: Trajan Pro
  74. # fonts:
  75. # - asset: fonts/TrajanPro.ttf
  76. # - asset: fonts/TrajanPro_Bold.ttf
  77. # weight: 700
  78. #
  79. # For details regarding fonts from package dependencies,
  80. # see https://flutter.dev/custom-fonts/#from-packages