pubspec.yaml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. name: compdfkit_flutter_example
  2. description: Demonstrates how to use the compdfkit_flutter plugin.
  3. version: 2.2.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. 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. flutter_svg: ^2.0.9
  26. file_picker: ^8.0.3
  27. url_launcher: ^6.2.3
  28. flutter_localizations:
  29. sdk: flutter
  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: ^4.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. generate: true
  50. assets:
  51. - pdfs/
  52. - images/
  53. - extraFonts/
  54. # To add assets to your application, add an assets section, like this:
  55. # assets:
  56. # - images/a_dot_burr.jpeg
  57. # - images/a_dot_ham.jpeg
  58. # An image asset can refer to one or more resolution-specific "variants", see
  59. # https://flutter.dev/assets-and-images/#resolution-aware
  60. # For details regarding adding assets from package dependencies, see
  61. # https://flutter.dev/assets-and-images/#from-packages
  62. # To add custom fonts to your application, add a fonts section here,
  63. # in this "flutter" section. Each entry in this list should have a
  64. # "family" key with the font family name, and a "fonts" key with a
  65. # list giving the asset and other descriptors for the font. For
  66. # example:
  67. # fonts:
  68. # - family: Schyler
  69. # fonts:
  70. # - asset: fonts/Schyler-Regular.ttf
  71. # - asset: fonts/Schyler-Italic.ttf
  72. # style: italic
  73. # - family: Trajan Pro
  74. # fonts:
  75. # - asset: fonts/TrajanPro.ttf
  76. # - asset: fonts/TrajanPro_Bold.ttf
  77. # weight: 700
  78. #
  79. # For details regarding fonts from package dependencies,
  80. # see https://flutter.dev/custom-fonts/#from-packages