pubspec.yaml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. name: flowy_sdk_example
  2. description: Demonstrates how to use the flowy_sdk plugin.
  3. # The following line prevents the package from being accidentally published to
  4. # pub.dev using `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.7.0 <3.0.0"
  8. dependencies:
  9. flutter:
  10. sdk: flutter
  11. flowy_sdk:
  12. # When depending on this package from a real application you should use:
  13. # flowy_sdk: ^x.y.z
  14. # See https://dart.dev/tools/pub/dependencies#version-constraints
  15. # The example app is bundled with the plugin so we use a path dependency on
  16. # the parent directory to use the current plugin's version.
  17. path: ../
  18. # The following adds the Cupertino Icons font to your application.
  19. # Use with the CupertinoIcons class for iOS style icons.
  20. cupertino_icons: ^1.0.1
  21. dev_dependencies:
  22. flutter_test:
  23. sdk: flutter
  24. integration_test:
  25. sdk: flutter
  26. # For information on the generic Dart part of this file, see the
  27. # following page: https://dart.dev/tools/pub/pubspec
  28. # The following section is specific to Flutter.
  29. flutter:
  30. # The following line ensures that the Material Icons font is
  31. # included with your application, so that you can use the icons in
  32. # the material Icons class.
  33. uses-material-design: true
  34. # To add assets to your application, add an assets section, like this:
  35. # assets:
  36. # - images/a_dot_burr.jpeg
  37. # - images/a_dot_ham.jpeg
  38. # An image asset can refer to one or more resolution-specific "variants", see
  39. # https://flutter.dev/assets-and-images/#resolution-aware.
  40. # For details regarding adding assets from package dependencies, see
  41. # https://flutter.dev/assets-and-images/#from-packages
  42. # To add custom fonts to your application, add a fonts section here,
  43. # in this "flutter" section. Each entry in this list should have a
  44. # "family" key with the font family name, and a "fonts" key with a
  45. # list giving the asset and other descriptors for the font. For
  46. # example:
  47. # fonts:
  48. # - family: Schyler
  49. # fonts:
  50. # - asset: fonts/Schyler-Regular.ttf
  51. # - asset: fonts/Schyler-Italic.ttf
  52. # style: italic
  53. # - family: Trajan Pro
  54. # fonts:
  55. # - asset: fonts/TrajanPro.ttf
  56. # - asset: fonts/TrajanPro_Bold.ttf
  57. # weight: 700
  58. #
  59. # For details regarding fonts from package dependencies,
  60. # see https://flutter.dev/custom-fonts/#from-packages