pubspec.yaml 3.4 KB

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