Skip to content

Commit 8befad4

Browse files
committed
Dependecies
1 parent 120a415 commit 8befad4

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

pubspec.yaml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
name: cloud_storage
2+
description: A new Flutter project.
3+
4+
# The following defines the version and build number for your application.
5+
# A version number is three numbers separated by dots, like 1.2.43
6+
# followed by an optional build number separated by a +.
7+
# Both the version and the builder number may be overridden in flutter
8+
# build by specifying --build-name and --build-number, respectively.
9+
# In Android, build-name is used as versionName while build-number used as versionCode.
10+
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
11+
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
12+
# Read more about iOS versioning at
13+
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14+
version: 1.0.0+1
15+
16+
environment:
17+
sdk: ">=2.1.0 <3.0.0"
18+
19+
dependencies:
20+
flutter:
21+
sdk: flutter
22+
progress_dialog: ^1.2.2
23+
firebase_messaging: ^6.0.15
24+
25+
# The following adds the Cupertino Icons font to your application.
26+
# Use with the CupertinoIcons class for iOS style icons.
27+
cupertino_icons: ^0.1.2
28+
provider: ^4.1.0
29+
#firebase_database: ^3.1.5
30+
firebase_storage: ^3.1.5
31+
firebase_core: ^0.4.4+3
32+
firebase_auth: ^0.16.0
33+
firebase_analytics: ^5.0.11
34+
cloud_firestore: ^0.13.5
35+
url_launcher: ^5.4.5
36+
file_picker: ^1.8.0+1
37+
#firebase: ^5.0.4 #this is for flutter web
38+
39+
dev_dependencies:
40+
flutter_test:
41+
sdk: flutter
42+
43+
44+
# For information on the generic Dart part of this file, see the
45+
# following page: https://dart.dev/tools/pub/pubspec
46+
47+
# The following section is specific to Flutter.
48+
flutter:
49+
50+
# The following line ensures that the Material Icons font is
51+
# included with your application, so that you can use the icons in
52+
# the material Icons class.
53+
uses-material-design: true
54+
55+
# To add assets to your application, add an assets section, like this:
56+
# assets:
57+
# - images/a_dot_burr.jpeg
58+
# - images/a_dot_ham.jpeg
59+
60+
# An image asset can refer to one or more resolution-specific "variants", see
61+
# https://flutter.dev/assets-and-images/#resolution-aware.
62+
63+
# For details regarding adding assets from package dependencies, see
64+
# https://flutter.dev/assets-and-images/#from-packages
65+
66+
# To add custom fonts to your application, add a fonts section here,
67+
# in this "flutter" section. Each entry in this list should have a
68+
# "family" key with the font family name, and a "fonts" key with a
69+
# list giving the asset and other descriptors for the font. For
70+
# example:
71+
# fonts:
72+
# - family: Schyler
73+
# fonts:
74+
# - asset: fonts/Schyler-Regular.ttf
75+
# - asset: fonts/Schyler-Italic.ttf
76+
# style: italic
77+
# - family: Trajan Pro
78+
# fonts:
79+
# - asset: fonts/TrajanPro.ttf
80+
# - asset: fonts/TrajanPro_Bold.ttf
81+
# weight: 700
82+
#
83+
# For details regarding fonts from package dependencies,
84+
# see https://flutter.dev/custom-fonts/#from-packages

0 commit comments

Comments
 (0)