-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpubspec.yaml
124 lines (108 loc) · 4.45 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
name: ftc_application
description: A new Flutter application.
version: 1.0.1+15
environment:
sdk: ">=2.12.0-0 <3.0.0"
dependencies:
flutter:
sdk: flutter
build_runner: ^2.0.1
dio: ^4.0.0
equatable: ^2.0.3
firebase_core: ^1.4.0
firebase_dynamic_links: ^2.0.7
firebase_messaging: ^10.0.4
another_flushbar: ^1.10.24
flutter_bloc: ^7.1.0
flutter_config: ^2.0.0
flutter_launcher_icons: ^0.9.0
flutter_secure_storage: ^4.1.0
flutter_speed_dial: ^3.0.5
google_maps_flutter: ^2.0.3
image_cropper: ^1.4.0
image_picker: ^0.7.4
json_annotation: ^4.0.1
json_serializable: ^4.1.1
meta: ^1.3.0
place_picker: ^0.9.18
rflutter_alert: ^2.0.2
share: ^2.0.1
swipe_stack: ^1.0.0
url_launcher: ^6.0.3
get_it: ^7.2.0
dev_dependencies:
flutter_test:
sdk: flutter
dependency_validator: ^3.0.0
flutter_native_splash: ^1.2.1
flutter_icons:
ios: true
android: true
image_path_ios: "assets/images/ios_app_logo.png"
image_path_android: "assets/images/android_app_logo.png"
flutter:
uses-material-design: true
assets:
- assets/images/
fonts:
- family: Hell
fonts:
- asset: assets/fonts/Hell.ttf
- family: Cairo
fonts:
- asset: assets/fonts/Cairo-Black.ttf
- asset: assets/fonts/Cairo-Bold.ttf
- asset: assets/fonts/Cairo-ExtraLight.ttf
- asset: assets/fonts/Cairo-Light.ttf
- asset: assets/fonts/Cairo-Regular.ttf
- asset: assets/fonts/Cairo-SemiBold.ttf
flutter_native_splash:
# This package generates native code to customize Flutter's default white native splash screen
# with background color and splash image.
# Customize the parameters below, and run the following command in the terminal:
# flutter pub run flutter_native_splash:create
# To restore Flutter's default white splash screen, run the following command in the terminal:
# flutter pub run flutter_native_splash:remove
# color or background_image is the only required parameter. Use color to set the background
# of your splash screen to a solid color. Use background_image to set the background of your
# splash screen to a png image. This is useful for gradients. The image will be stretch to the
# size of the app. Only one parameter can be used, color and background_image cannot both be set.
#color: "#03A9F4"
background_image: "assets/images/splash.png"
# Optional parameters are listed below. To enable a parameter, uncomment the line by removing
# the leading # character.
# The image parameter allows you to specify an image used in the splash screen. It must be a
# png file and should be sized for 4x pixel density.
image: assets/images/logoFTC.png
# The position of the splash image can be set with android_gravity, ios_content_mode, and
# web_image_mode parameters. All default to center.
#
# android_gravity can be one of the following Android Gravity (see
# https://developer.android.com/reference/android/view/Gravity): bottom, center,
# center_horizontal, center_vertical, clip_horizontal, clip_vertical, end, fill, fill_horizontal,
# fill_vertical, left, right, start, or top.
android_gravity: center
#
# ios_content_mode can be one of the following iOS UIView.ContentMode (see
# https://developer.apple.com/documentation/uikit/uiview/contentmode): scaleToFill,
# scaleAspectFit, scaleAspectFill, center, top, bottom, left, right, topLeft, topRight,
# bottomLeft, or bottomRight.
ios_content_mode: center
#
# web_image_mode can be one of the following modes: center, contain, stretch, and cover.
#web_image_mode: center
# To hide the notification bar, use the fullscreen parameter. Has no affect in web since web
# has no notification bar. Defaults to false.
# NOTE: Unlike Android, iOS will not automatically show the notification bar when the app loads.
# To show the notification bar, add the following code to your Flutter app:
# WidgetsFlutterBinding.ensureInitialized();
# SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom, SystemUiOverlay.top]);
#fullscreen: true
# If you have changed the name(s) of your info.plist file(s), you can specify the filename(s)
# with the info_plist_files parameter. Remove only the # characters in the three lines below,
# do not remove any spaces:
#info_plist_files:
# - 'ios/Runner/Info-Debug.plist'
# - 'ios/Runner/Info-Release.plist'
# To enable support for Android 12, set the following parameter to true. Defaults to false.
#android12: true