pubspec.yaml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. name: compdfkit_flutter_example
  2. description: Demonstrates how to use the compdfkit_flutter plugin.
  3. version: 1.13.0-dev.2
  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. file_picker: ^6.1.1
  30. dev_dependencies:
  31. integration_test:
  32. sdk: flutter
  33. flutter_test:
  34. sdk: flutter
  35. # The "flutter_lints" package below contains a set of recommended lints to
  36. # encourage good coding practices. The lint set provided by the package is
  37. # activated in the `analysis_options.yaml` file located at the root of your
  38. # package. See that file for information about deactivating specific lint
  39. # rules and activating additional ones.
  40. flutter_lints: ^2.0.0
  41. # For information on the generic Dart part of this file, see the
  42. # following page: https://dart.dev/tools/pub/pubspec
  43. # The following section is specific to Flutter packages.
  44. flutter:
  45. # The following line ensures that the Material Icons font is
  46. # included with your application, so that you can use the icons in
  47. # the material Icons class.
  48. uses-material-design: true
  49. assets:
  50. - pdfs/
  51. # To add assets to your application, add an assets section, like this:
  52. # assets:
  53. # - images/a_dot_burr.jpeg
  54. # - images/a_dot_ham.jpeg
  55. # An image asset can refer to one or more resolution-specific "variants", see
  56. # https://flutter.dev/assets-and-images/#resolution-aware
  57. # For details regarding adding assets from package dependencies, see
  58. # https://flutter.dev/assets-and-images/#from-packages
  59. # To add custom fonts to your application, add a fonts section here,
  60. # in this "flutter" section. Each entry in this list should have a
  61. # "family" key with the font family name, and a "fonts" key with a
  62. # list giving the asset and other descriptors for the font. For
  63. # example:
  64. # fonts:
  65. # - family: Schyler
  66. # fonts:
  67. # - asset: fonts/Schyler-Regular.ttf
  68. # - asset: fonts/Schyler-Italic.ttf
  69. # style: italic
  70. # - family: Trajan Pro
  71. # fonts:
  72. # - asset: fonts/TrajanPro.ttf
  73. # - asset: fonts/TrajanPro_Bold.ttf
  74. # weight: 700
  75. #
  76. # For details regarding fonts from package dependencies,
  77. # see https://flutter.dev/custom-fonts/#from-packages