pubspec.yaml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. name: compdfkit_flutter_example
  2. description: Demonstrates how to use the compdfkit_flutter plugin.
  3. version: 2.0.0
  4. homepage: https://www.compdf.com
  5. repository: https://github.com/ComPDFKit/compdfkit-pdf-sdk-flutter
  6. issue_tracker: https://www.compdf.com/support
  7. documentation: https://www.compdf.com/guides/pdf-sdk/flutter/overview
  8. publish_to: 'none'
  9. environment:
  10. sdk: '>=3.0.5 <4.0.0'
  11. # Dependencies specify other packages that your package needs in order to work.
  12. # To automatically upgrade your package dependencies to the latest versions
  13. # consider running `flutter pub upgrade --major-versions`. Alternatively,
  14. # dependencies can be manually updated by changing the version numbers below to
  15. # the latest version available on pub.dev. To see which dependencies have newer
  16. # versions available, run `flutter pub outdated`.
  17. dependencies:
  18. flutter:
  19. sdk: flutter
  20. compdfkit_flutter:
  21. path: ../
  22. # The following adds the Cupertino Icons font to your application.
  23. # Use with the CupertinoIcons class for iOS style icons.
  24. cupertino_icons: ^1.0.2
  25. dev_dependencies:
  26. integration_test:
  27. sdk: flutter
  28. flutter_test:
  29. sdk: flutter
  30. # The "flutter_lints" package below contains a set of recommended lints to
  31. # encourage good coding practices. The lint set provided by the package is
  32. # activated in the `analysis_options.yaml` file located at the root of your
  33. # package. See that file for information about deactivating specific lint
  34. # rules and activating additional ones.
  35. flutter_lints: ^2.0.0
  36. # For information on the generic Dart part of this file, see the
  37. # following page: https://dart.dev/tools/pub/pubspec
  38. # The following section is specific to Flutter packages.
  39. flutter:
  40. # The following line ensures that the Material Icons font is
  41. # included with your application, so that you can use the icons in
  42. # the material Icons class.
  43. uses-material-design: true
  44. assets:
  45. - pdfs/
  46. # To add assets to your application, add an assets section, like this:
  47. # assets:
  48. # - images/a_dot_burr.jpeg
  49. # - images/a_dot_ham.jpeg
  50. # An image asset can refer to one or more resolution-specific "variants", see
  51. # https://flutter.dev/assets-and-images/#resolution-aware
  52. # For details regarding adding assets from package dependencies, see
  53. # https://flutter.dev/assets-and-images/#from-packages
  54. # To add custom fonts to your application, add a fonts section here,
  55. # in this "flutter" section. Each entry in this list should have a
  56. # "family" key with the font family name, and a "fonts" key with a
  57. # list giving the asset and other descriptors for the font. For
  58. # example:
  59. # fonts:
  60. # - family: Schyler
  61. # fonts:
  62. # - asset: fonts/Schyler-Regular.ttf
  63. # - asset: fonts/Schyler-Italic.ttf
  64. # style: italic
  65. # - family: Trajan Pro
  66. # fonts:
  67. # - asset: fonts/TrajanPro.ttf
  68. # - asset: fonts/TrajanPro_Bold.ttf
  69. # weight: 700
  70. #
  71. # For details regarding fonts from package dependencies,
  72. # see https://flutter.dev/custom-fonts/#from-packages