-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubspec.yaml
132 lines (116 loc) · 3.98 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
125
126
127
128
129
130
131
132
name: roadmap
description: A new Flutter application.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1
## Slidy Scripts
vars:
clean: flutter clean
get: flutter pub get
runner: flutter pub run build_runner
codegenLoader: flutter pub run easy_localization:generate -O lib/localizations -S translations -f json
localeKeys: flutter pub run easy_localization:generate -O lib/localizations -S translations -f keys -o locale_keys.g.dart
icon: flutter pub run flutter_launcher_icons:main
splash: flutter pub run flutter_native_splash:create
scripts:
build: $runner build --delete-conflicting-outputs
watch: $clean & $get & $runner watch
mobx_build_clean: $clean & $get & $runner build --delete-conflicting-outputs
easy_localization: $codegenLoader & $localeKeys
change_icon: $get & $icon
change_splash: $get & $splash
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
flutter_modular: ^5.0.3
mobx: ^2.0.7+3
flutter_mobx: ^2.0.6+1
easy_localization: ^3.0.1
theme_provider: ^0.5.0
flutter_native_splash: ^2.2.3+1
dio: ^4.0.6
bot_toast: ^4.0.2
sizer: ^2.0.15
google_fonts: ^3.0.1
reactive_forms: ^13.0.0
shared_preferences: ^2.0.15
flutter_svg: ^1.1.0
google_sign_in: ^5.3.3
webview_flutter: ^3.0.4
infinite_scroll_pagination: ^3.2.0
font_awesome_flutter: ^10.1.0
material_floating_search_bar: ^0.3.7
salomon_bottom_bar: ^3.3.1
graphview: ^1.1.1
flutter_reaction_button: ^2.0.1+1
image_picker: ^0.8.5+3
url_launcher: ^6.1.5
calendar_view: ^1.0.0
flutter_local_notifications: ^9.7.0
cron: ^0.5.0
flutter_native_timezone: ^2.0.0
path_provider: ^2.0.11
flutter_pdfview: ^1.2.3
http: ^0.13.5
permission_handler: ^10.0.0
syncfusion_flutter_pdfviewer: ^20.2.43-beta
external_path: ^1.0.3
dev_dependencies:
mobx_codegen: ^2.0.7
build_runner: ^2.1.11
flutter_launcher_icons: "^0.10.0"
flutter_icons:
android: "launcher_icon"
ios: true
image_path: "assets/icon.png"
min_sdk_android: 21
flutter_native_splash:
color: "#ffffff"
#background_image: "assets/background.png"
# 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/logo_foreground_432x432.png
color_dark: "#161616"
#background_image_dark: "assets/dark-background.png"
image_dark: assets/logo_foreground_432x432.png
#android: false
#ios: false
#web: false
#android_gravity: center
#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
# The following section is specific to Flutter.
flutter:
uses-material-design: true
# To add assets to your application, add an assets section, like this:
assets:
- assets/
- translations/
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700