-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathpubspec.yaml
46 lines (42 loc) · 1.77 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
name: dynamic_color
description: A Flutter package to create Material color schemes based on a platform's implementation of dynamic color.
version: 1.7.0
repository: https://github.com/material-foundation/flutter-packages/tree/main/packages/dynamic_color
issue_tracker: https://github.com/material-foundation/flutter-packages/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+dynamic_color%22
screenshots:
- description: "Key colors are extracted from a user's wallpaper."
path: screenshots/wallpaper_extraction.png
- description: 'A complete dynamic color scheme consists of user-generated colors and custom colors.'
path: screenshots/full_color_scheme.png
- description: 'Harmonization shifts tones of custom colors to ensure that visual balance and accessible contrast is achieved when combined with user-generated colors.'
path: screenshots/harmonization.gif
environment:
sdk: ">=2.16.0 <4.0.0"
flutter: ">=3.4.0-17.0.pre"
dependencies:
flutter:
sdk: flutter
flutter_test:
sdk: flutter
# Since this package is an SDK dependency, we need to support a range of versions.
# See https://github.com/flutter/flutter/blob/main/packages/flutter/pubspec.yaml for current version used by the SDK.
material_color_utilities: ">=0.2.0 <= 0.11.1"
dev_dependencies:
cider: ">=0.1.3 <0.3.0"
flutter_lints: ^4.0.0
meta: ^1.3.0
flutter:
plugin:
platforms:
android:
package: io.material.plugins.dynamic_color
pluginClass: DynamicColorPlugin
linux:
package: io.material.plugins.dynamic_color
pluginClass: DynamicColorPlugin
macos:
package: io.material.plugins.dynamic_color
pluginClass: DynamicColorPlugin
windows:
package: io.material.plugins.dynamic_color
pluginClass: DynamicColorPluginCApi