pubspec.yaml 3.3 KB

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