-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
pubspec.yaml
118 lines (95 loc) · 2.5 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
name: sizzle_starter
description: Production-ready template for Flutter applications.
# Prevent accidental publishing to pub.dev.
publish_to: "none"
version: 0.0.1+1
environment:
sdk: ">=3.6.0 <4.0.0"
flutter: ">=3.27.1 <4.0.0"
workspace:
- packages/rest_client
- packages/app_database
dependencies:
# Flutter SDK
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
collection: 1.19.0
async: 2.11.0
meta: 1.15.0
intl: 0.19.0
# Stream
stream_transform: 2.1.1
rxdart: 0.28.0
# BLoC
flutter_bloc: 8.1.6
# Networking
http: 1.2.2
cronet_http: 1.3.2
cupertino_http: 2.0.1
# Storing data
shared_preferences: 2.3.5
drift: 2.23.0
drift_flutter: 0.2.4
# Logging
stack_trace: 1.12.0
sentry_flutter: 8.12.0
# Firebase
firebase_core: 3.9.0
firebase_analytics: 11.3.6
# Packages
rest_client:
path: packages/rest_client
app_database:
path: packages/app_database
# Utils
path: 1.9.0
path_provider: 2.1.5
clock: 1.1.1
fake_async: 1.3.1
package_info_plus: 8.1.2
dev_dependencies:
# Testing
flutter_test:
sdk: flutter
mockito: 5.4.5
# Lints
sizzle_lints: 2.1.3
# Utils
flutter_gen_runner: 5.8.0
flutter_launcher_icons: 0.14.2
flutter_native_splash: 2.4.4
build_runner: 2.4.14
flutter:
uses-material-design: true
generate: true
assets:
# Add assets from the images directory to the application.
- assets/images/
flutter_gen:
output: lib/src/core/constant/generated
line_length: 80
flutter_launcher_icons:
# image_path: "assets/images/icon-128x128.png"
image_path_android: "assets/images/icon-1024x1024.png"
image_path_ios: "assets/images/icon-1024x1024.png"
android: true # can specify file name here e.g. "ic_launcher"
ios: true # can specify file name here e.g. "My-Launcher-Icon"
# adaptive_icon_background: "assets/images/christmas-background.png" # only available for Android 8.0 devices and above
# adaptive_icon_foreground: "assets/images/icon-foreground-432x432.png" # only available for Android 8.0 devices and above
min_sdk_android: 21 # android min sdk min:16, default 21
remove_alpha_ios: true
background_color_ios: "#ffffff"
web:
generate: true
image_path: "assets/images/icon-1024x1024.png"
# background_color: "#hexcode"
# theme_color: "#hexcode"
windows:
generate: true
image_path: "assets/images/icon-1024x1024.png"
icon_size: 48 # min:48, max:256, default: 48
macos:
generate: true
image_path: "assets/images/icon-1024x1024.png"