-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
pubspec.yaml
112 lines (90 loc) · 2.4 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
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.5.0 <4.0.0"
flutter: ">=3.24.4 <4.0.0"
dependencies:
# Flutter SDK
flutter:
sdk: flutter
flutter_test:
sdk: flutter
flutter_localizations:
sdk: flutter
collection: any
async: any
meta: any
intl: any
# Stream
stream_transform: ^2.1.0
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.2
drift: ^2.21.0
drift_flutter: ^0.2.1
# Logging
stack_trace: ^1.11.1
sentry_flutter: ^8.9.0
# Firebase
firebase_core: ^3.6.0
firebase_analytics: ^11.3.3
# Utils
path: ^1.9.0
path_provider: ^2.1.5
intercepted_client: ^0.0.1
clock: ^1.1.1
fake_async: ^1.3.1
package_info_plus: ^8.1.0
dev_dependencies:
# Testing
mockito: ^5.4.4
# Lints
sizzle_lints: ^2.1.3
# Utils
flutter_gen_runner: ^5.8.0
flutter_launcher_icons: ^0.14.1
flutter_native_splash: ^2.4.2
# Codegen
drift_dev: ^2.21.2
build_runner: ^2.4.13
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"