pubspec.yaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. name: flutter_webview_plugin_example
  2. description: Demonstrates how to use the flutter_webview_plugin plugin.
  3. dependencies:
  4. flutter:
  5. sdk: flutter
  6. flutter_webview_plugin:
  7. path: ../
  8. # For information on the generic Dart part of this file, see the
  9. # following page: https://www.dartlang.org/tools/pub/pubspec
  10. # The following section is specific to Flutter.
  11. flutter:
  12. # The following line ensures that the Material Icons font is
  13. # included with your application, so that you can use the icons in
  14. # the Icons class.
  15. uses-material-design: true
  16. # To add assets to your application, add an assets section here, in
  17. # this "flutter" section, as in:
  18. # assets:
  19. # - images/a_dot_burr.jpeg
  20. # - images/a_dot_ham.jpeg
  21. # To add assets from package dependencies, first ensure the asset
  22. # is in the lib/ directory of the dependency. Then,
  23. # refer to the asset with a path prefixed with
  24. # `packages/PACKAGE_NAME/`. Note: the `lib/` is implied, do not
  25. # include `lib/` in the asset path.
  26. #
  27. # Here is an example:
  28. #
  29. # assets:
  30. # - packages/PACKAGE_NAME/path/to/asset
  31. # To add custom fonts to your application, add a fonts section here,
  32. # in this "flutter" section. Each entry in this list should have a
  33. # "family" key with the font family name, and a "fonts" key with a
  34. # list giving the asset and other descriptors for the font. For
  35. # example:
  36. # fonts:
  37. # - family: Schyler
  38. # fonts:
  39. # - asset: fonts/Schyler-Regular.ttf
  40. # - asset: fonts/Schyler-Italic.ttf
  41. # style: italic
  42. # - family: Trajan Pro
  43. # fonts:
  44. # - asset: fonts/TrajanPro.ttf
  45. # - asset: fonts/TrajanPro_Bold.ttf
  46. # weight: 700