pubspec.yaml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. flutter_lints: ^2.0.1
  27. # For information on the generic Dart part of this file, see the
  28. # following page: https://dart.dev/tools/pub/pubspec
  29. # The following section is specific to Flutter.
  30. flutter:
  31. # The following line ensures that the Material Icons font is
  32. # included with your application, so that you can use the icons in
  33. # the material Icons class.
  34. uses-material-design: true
  35. # To add assets to your application, add an assets section, like this:
  36. # assets:
  37. # - images/a_dot_burr.jpeg
  38. # - images/a_dot_ham.jpeg
  39. # An image asset can refer to one or more resolution-specific "variants", see
  40. # https://flutter.dev/assets-and-images/#resolution-aware.
  41. # For details regarding adding assets from package dependencies, see
  42. # https://flutter.dev/assets-and-images/#from-packages
  43. # To add custom fonts to your application, add a fonts section here,
  44. # in this "flutter" section. Each entry in this list should have a
  45. # "family" key with the font family name, and a "fonts" key with a
  46. # list giving the asset and other descriptors for the font. For
  47. # example:
  48. # fonts:
  49. # - family: Schyler
  50. # fonts:
  51. # - asset: fonts/Schyler-Regular.ttf
  52. # - asset: fonts/Schyler-Italic.ttf
  53. # style: italic
  54. # - family: Trajan Pro
  55. # fonts:
  56. # - asset: fonts/TrajanPro.ttf
  57. # - asset: fonts/TrajanPro_Bold.ttf
  58. # weight: 700
  59. #
  60. # For details regarding fonts from package dependencies,
  61. # see https://flutter.dev/custom-fonts/#from-packages