pubspec.yaml 3.1 KB

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