pubspec.yaml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. name: flutter_note
  2. description: Some notes about Flutter application.
  3. # The following defines the version and build number for your application.
  4. # A version number is three numbers separated by dots, like 1.2.43
  5. # followed by an optional build number separated by a +.
  6. # Both the version and the builder number may be overridden in flutter
  7. # build by specifying --build-name and --build-number, respectively.
  8. # Read more about versioning at semver.org.
  9. version: 1.0.0+1
  10. environment:
  11. sdk: ">=2.0.0-dev.68.0 <3.0.0"
  12. dependencies:
  13. flutter:
  14. sdk: flutter
  15. # The following adds the Cupertino Icons font to your application.
  16. # Use with the CupertinoIcons class for iOS style icons.
  17. cupertino_icons: ^0.1.2
  18. dev_dependencies:
  19. flutter_test:
  20. sdk: flutter
  21. # For information on the generic Dart part of this file, see the
  22. # following page: https://www.dartlang.org/tools/pub/pubspec
  23. # The following section is specific to Flutter.
  24. flutter:
  25. # The following line ensures that the Material Icons font is
  26. # included with your application, so that you can use the icons in
  27. # the material Icons class.
  28. uses-material-design: true
  29. # To add assets to your application, add an assets section, like this:
  30. # assets:
  31. # - images/a_dot_burr.jpeg
  32. # - images/a_dot_ham.jpeg
  33. # An image asset can refer to one or more resolution-specific "variants", see
  34. # https://flutter.io/assets-and-images/#resolution-aware.
  35. # For details regarding adding assets from package dependencies, see
  36. # https://flutter.io/assets-and-images/#from-packages
  37. # To add custom fonts to your application, add a fonts section here,
  38. # in this "flutter" section. Each entry in this list should have a
  39. # "family" key with the font family name, and a "fonts" key with a
  40. # list giving the asset and other descriptors for the font. For
  41. # example:
  42. # fonts:
  43. # - family: Schyler
  44. # fonts:
  45. # - asset: fonts/Schyler-Regular.ttf
  46. # - asset: fonts/Schyler-Italic.ttf
  47. # style: italic
  48. # - family: Trajan Pro
  49. # fonts:
  50. # - asset: fonts/TrajanPro.ttf
  51. # - asset: fonts/TrajanPro_Bold.ttf
  52. # weight: 700
  53. #
  54. # For details regarding fonts from package dependencies,
  55. # see https://flutter.io/custom-fonts/#from-packages