-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubspec.yaml
67 lines (60 loc) · 1.95 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
name: aflutter_craft
description: A platform for neural art style transfer.
publish_to: "none"
version: 1.2.0+1
# default flutter stuff
environment:
sdk: ">=2.12.0 <3.0.0"
flutter:
uses-material-design: true
assets:
- assets/images/
- assets/texts/
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
flutter_riverpod: any # state management
dio: any # fetching stuff from the web
google_fonts: any # custom fonts
file_selector: any # corss platform file selection
file_selector_linux: any
file_selector_windows: any
file_selector_macos: any
cached_network_image: any # fetch network image
social_share: any # share to specific social media
flutter_cache_manager: any # manage cache of network iamges
path_provider: any # provide common used paths in a platform
url_launcher: any # launch a link in platform browser
shared_preferences: any # for saving some app settings to device
showcaseview: any # showcase app features on first time run
image_picker: any # for selecting an image in mobile
image_gallery_saver: any # for saving images to gallery (mobile)
universal_io: any # IO operations on all platforms (thanks web)
window_size: # set the window size and other stuff
git:
url: git://github.com/google/flutter-desktop-embedding.git
path: plugins/window_size
dev_dependencies:
flutter_native_splash: any # generate splash screen for Android/IOS and Web
flutter_launcher_icons: any # generate IOS/Android app icons
# native splash settings
flutter_native_splash:
image: "assets/images/logo.png"
color: "#ff4151"
color_dark: "#ff4151"
android: true
ios: true
web: true
android_gravity: center
ios_content_mode: center
web_image_mode: center
fullscreen: true
# App icon settings
flutter_icons:
ios: true
android: true
image_path: "assets/images/logo.png"
remove_alpha_ios: true
adaptive_icon_background: "#ff4151"
adaptive_icon_foreground: "assets/images/logo.png"