-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpubspec.yaml
91 lines (73 loc) · 3.13 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
name: flutter_theme
description: Fully customizable, flexible and easy to use theme package for Flutter apps.
version: 0.0.5
homepage: https://mohesu.com
repository: https://github.com/rvndsngwn/flutter_theme.git
environment:
sdk: '>=2.18.0 <3.0.0'
flutter: ">=1.17.0"
dependencies:
# Adds the Cupertino Icons font to your application. Used by the
# CupertinoIcons class for iOS style icons, by Google flutter.dev.
# https://pub.dev/packages/cupertino_icons
# cupertino_icons: ^1.0.5
# Color picker package, by Mike Rydstrom, rydmike.com (@rydmike).
# https://pub.dev/packages/flex_color_picker
# flex_color_picker: ^2.6.1
# Color scheme package, by Mike Rydstrom, rydmike.com (@rydmike).
# https://pub.dev/packages/flex_color_scheme
flex_color_scheme: ^6.0.1
# FlexSeedScheme package, by Mike Rydstrom, rydmike.com (@rydmike).
# https://pub.dev/packages/flex_seed_scheme
# flex_seed_scheme: ^1.0.1
# Flutter Riverpod state management, by Remi Rousselet.
# https://pub.dev/packages/flutter_riverpod
flutter_riverpod: ^2.0.1
# The Flutter SDK, by Google flutter.dev.
flutter:
sdk: flutter
# Masonry grid layout package, by Romain Rastel.
# https://pub.dev/packages/flutter_staggered_grid_view
# flutter_staggered_grid_view: ^0.6.2
# Google fonts, by Google material.io.
# https://pub.dev/packages/google_fonts
google_fonts: ^3.0.1
# Hive local storage, by Simon Leir.
# https://pub.dev/packages/hive
hive: ^2.2.3
# Color utilities by Google (material.io).
# Used to compute and create Tonal Palette theme colors.
# Flutter SDK from 2.10.0 stable also uses and depends on this package.
#
# Use ^0.1.3 for Flutter stable 2.10.x, that uses 0.1.3
# Use ^0.1.3 for Flutter stable 3.0.x, that uses 0.1.4.
# Use ^0.1.3 for Flutter rel candidates 3.1, 3.2, 3.4, that uses 0.1.5, beware that
# version 0.1.5 has a new faster algo compared to 0.1.4 that changes some seed colors slightly.
# Use ^0.2.0 for Flutter master 3.1.0-x, that uses 0.2.0 after 5.8.2022.
#
# This is an unusual range since 0.2.0 is a breaking semver step over 0.1.x, but it works for this
# case, and was also observed as range used by Google package dynamic_color.
material_color_utilities: '>=0.1.5 <=0.2.0'
# Material Design Icons, community designed. Used for
# icons in the Platform selection popup menu.
# https://materialdesignicons.com/
material_design_icons_flutter: ^5.0.6996
# Commonly used directories on host platform file systems, by Google (flutter.dev).
# Used to get a working storage path for Hive on Windows.
# https://pub.dev/packages/path_provider
path_provider: ^2.0.11
# Store value pair shared preference data, by Google flutter.dev.
# https://pub.dev/packages/shared_preferences
shared_preferences: ^2.0.15
# A class for parsing strings using a sequence of patterns.
# By the Dart team, tools.dart.dev
# https://pub.dev/packages/string_scanner
string_scanner: ^1.1.1
# Used for launching a WEB URL, by Google flutter.dev.
# https://pub.dev/packages/url_launcher
url_launcher: ^6.1.6
dev_dependencies:
flutter_test:
sdk: flutter
flutter:
uses-material-design: true