Advertisement
bllt20

pubspec.yaml

Jul 25th, 2020
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. environment:
  2. sdk: ">=2.1.0 <3.0.0"
  3.  
  4. dependencies:
  5. flutter:
  6. sdk: flutter
  7.  
  8. # The following adds the Cupertino Icons font to your application.
  9. # Use with the CupertinoIcons class for iOS style icons.
  10. cupertino_icons: ^0.1.2
  11. firebase_core: ^0.4.5 #recursos básicos
  12. firebase_auth: ^0.16.1 #autenticação
  13. firebase_storage: ^3.1.6 #armazenamento arquivos
  14. cloud_firestore: ^0.13.7 #banco de dados
  15. image_picker: ^0.6.0+10 #selecionar imagens
  16.  
  17.  
  18.  
  19. dev_dependencies:
  20. flutter_test:
  21. sdk: flutter
  22. flutter_launcher_icons: ^0.7.2+1
  23.  
  24. flutter_icons:
  25. android: true
  26. ios: true
  27. image_path: "dev_assets/icone.png"
  28. adaptive_icon_background: "$64bc87"
  29. adaptive_icon_foreground: "dev_assets/icone-adaptive.png"
  30.  
  31.  
  32. # For information on the generic Dart part of this file, see the
  33. # following page: https://dart.dev/tools/pub/pubspec
  34.  
  35. # The following section is specific to Flutter.
  36. flutter:
  37.  
  38. # The following line ensures that the Material Icons font is
  39. # included with your application, so that you can use the icons in
  40. # the material Icons class.
  41. uses-material-design: true
  42.  
  43. # To add assets to your application, add an assets section, like this:
  44. # assets:
  45. # - images/a_dot_burr.jpeg
  46. # - images/a_dot_ham.jpeg
  47. assets:
  48. - imagens/logo.png
  49. - imagens/usuario.png
  50. - imagens/bg.png
  51.  
  52. # An image asset can refer to one or more resolution-specific "variants", see
  53. # https://flutter.dev/assets-and-images/#resolution-aware.
  54.  
  55. # For details regarding adding assets from package dependencies, see
  56. # https://flutter.dev/assets-and-images/#from-packages
  57.  
  58. # To add custom fonts to your application, add a fonts section here,
  59. # in this "flutter" section. Each entry in this list should have a
  60. # "family" key with the font family name, and a "fonts" key with a
  61. # list giving the asset and other descriptors for the font. For
  62. # example:
  63. # fonts:
  64. # - family: Schyler
  65. # fonts:
  66. # - asset: fonts/Schyler-Regular.ttf
  67. # - asset: fonts/Schyler-Italic.ttf
  68. # style: italic
  69. # - family: Trajan Pro
  70. # fonts:
  71. # - asset: fonts/TrajanPro.ttf
  72. # - asset: fonts/TrajanPro_Bold.ttf
  73. # weight: 700
  74. #
  75. # For details regarding fonts from package dependencies,
  76. # see https://flutter.dev/custom-fonts/#from-packages
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement