flet-rive 0.2.0.dev34__tar.gz → 0.2.0.dev46__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of flet-rive might be problematic. Click here for more details.
- {flet_rive-0.2.0.dev34/src/flet_rive.egg-info → flet_rive-0.2.0.dev46}/PKG-INFO +8 -2
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/README.md +7 -1
- flet_rive-0.2.0.dev46/pyproject.toml +97 -0
- flet_rive-0.2.0.dev46/src/flet_rive/__init__.py +3 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flet_rive/rive.py +8 -6
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46/src/flet_rive.egg-info}/PKG-INFO +8 -2
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/pubspec.lock +54 -38
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/pubspec.yaml +1 -1
- flet_rive-0.2.0.dev34/pyproject.toml +0 -71
- flet_rive-0.2.0.dev34/src/flet_rive/__init__.py +0 -1
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/LICENSE +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/setup.cfg +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flet_rive.egg-info/SOURCES.txt +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flet_rive.egg-info/dependency_links.txt +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flet_rive.egg-info/requires.txt +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flet_rive.egg-info/top_level.txt +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/CHANGELOG.md +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/LICENSE +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/README.md +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/analysis_options.yaml +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/lib/flet_rive.dart +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/lib/src/extension.dart +0 -0
- {flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/lib/src/rive.dart +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-rive
|
|
3
|
-
Version: 0.2.0.
|
|
3
|
+
Version: 0.2.0.dev46
|
|
4
4
|
Summary: Display Rive animations in Flet apps.
|
|
5
5
|
Author-email: Flet contributors <hello@flet.dev>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -41,7 +41,9 @@ This package supports the following platforms:
|
|
|
41
41
|
| Android | ✅ |
|
|
42
42
|
| Web | ✅ |
|
|
43
43
|
|
|
44
|
-
##
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
### Installation
|
|
45
47
|
|
|
46
48
|
To install the `flet-rive` package and add it to your project dependencies:
|
|
47
49
|
|
|
@@ -60,3 +62,7 @@ To install the `flet-rive` package and add it to your project dependencies:
|
|
|
60
62
|
```bash
|
|
61
63
|
poetry add flet-rive
|
|
62
64
|
```
|
|
65
|
+
|
|
66
|
+
### Examples
|
|
67
|
+
|
|
68
|
+
For examples, see [these](./examples).
|
|
@@ -25,7 +25,9 @@ This package supports the following platforms:
|
|
|
25
25
|
| Android | ✅ |
|
|
26
26
|
| Web | ✅ |
|
|
27
27
|
|
|
28
|
-
##
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
### Installation
|
|
29
31
|
|
|
30
32
|
To install the `flet-rive` package and add it to your project dependencies:
|
|
31
33
|
|
|
@@ -44,3 +46,7 @@ To install the `flet-rive` package and add it to your project dependencies:
|
|
|
44
46
|
```bash
|
|
45
47
|
poetry add flet-rive
|
|
46
48
|
```
|
|
49
|
+
|
|
50
|
+
### Examples
|
|
51
|
+
|
|
52
|
+
For examples, see [these](./examples).
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "flet-rive"
|
|
3
|
+
version = "0.2.0.dev46"
|
|
4
|
+
description = "Display Rive animations in Flet apps."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [{ name = "Flet contributors", email = "hello@flet.dev" }]
|
|
7
|
+
license = "Apache-2.0"
|
|
8
|
+
requires-python = ">=3.10"
|
|
9
|
+
dependencies = [
|
|
10
|
+
"flet >=0.70.0.dev0",
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://flet.dev"
|
|
15
|
+
Documentation = "https://flet-dev.github.io/flet-rive"
|
|
16
|
+
Repository = "https://github.com/flet-dev/flet-rive"
|
|
17
|
+
Issues = "https://github.com/flet-dev/flet-rive/issues"
|
|
18
|
+
|
|
19
|
+
[tool.setuptools.package-data]
|
|
20
|
+
"flutter.flet_rive" = ["**/*"]
|
|
21
|
+
|
|
22
|
+
[dependency-groups]
|
|
23
|
+
test = [
|
|
24
|
+
"pytest >=7.2.0",
|
|
25
|
+
]
|
|
26
|
+
lint = [
|
|
27
|
+
"ruff >=0.11.7",
|
|
28
|
+
]
|
|
29
|
+
dev = [
|
|
30
|
+
"pre-commit >=4.2.0",
|
|
31
|
+
{ include-group = 'lint' },
|
|
32
|
+
{ include-group = 'test' },
|
|
33
|
+
]
|
|
34
|
+
docs-coverage = [
|
|
35
|
+
"docstr-coverage >=2.3.2",
|
|
36
|
+
]
|
|
37
|
+
docs = [
|
|
38
|
+
"mkdocs >=1.6.1",
|
|
39
|
+
"mkdocs-material >=9.6.15",
|
|
40
|
+
"mkdocstrings-python >=1.16.12",
|
|
41
|
+
"mkdocstrings-python-xref >=1.16.3",
|
|
42
|
+
"mike >=2.1.3",
|
|
43
|
+
"markdown >=3.6",
|
|
44
|
+
"pymdown-extensions >=10.16",
|
|
45
|
+
"mkdocs-exclude >=1.0.2",
|
|
46
|
+
"mkdocs-glightbox >=0.4.0",
|
|
47
|
+
"mkdocs-open-in-new-tab >=1.0.8",
|
|
48
|
+
"mkdocs-section-index >=0.3.10",
|
|
49
|
+
"griffe-modernized-annotations >=1.0.8",
|
|
50
|
+
"griffe-warnings-deprecated >=1.1.0",
|
|
51
|
+
"pygments >=2.16",
|
|
52
|
+
"markdown-exec[ansi] >=1.11.0",
|
|
53
|
+
"pydocstyle >=6.3.0",
|
|
54
|
+
"linkcheckmd >=1.4.0",
|
|
55
|
+
"mkdocs-external-images",
|
|
56
|
+
{ include-group = 'docs-coverage' },
|
|
57
|
+
]
|
|
58
|
+
all = [
|
|
59
|
+
{ include-group = 'dev' },
|
|
60
|
+
{ include-group = 'docs' },
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
[tool.uv.sources]
|
|
64
|
+
mkdocs-external-images = { git = "https://github.com/flet-dev/mkdocs-external-images", tag = "v0.2.0" }
|
|
65
|
+
|
|
66
|
+
[build-system]
|
|
67
|
+
requires = ["setuptools"]
|
|
68
|
+
build-backend = "setuptools.build_meta"
|
|
69
|
+
|
|
70
|
+
[tool.ruff]
|
|
71
|
+
line-length = 88
|
|
72
|
+
target-version = "py39"
|
|
73
|
+
fix = true
|
|
74
|
+
show-fixes = true
|
|
75
|
+
|
|
76
|
+
[tool.ruff.lint]
|
|
77
|
+
select = [
|
|
78
|
+
# pycodestyle
|
|
79
|
+
"E",
|
|
80
|
+
# Pyflakes
|
|
81
|
+
"F",
|
|
82
|
+
# pyupgrade
|
|
83
|
+
"UP",
|
|
84
|
+
# flake8-bugbear
|
|
85
|
+
"B",
|
|
86
|
+
# flake8-simplify
|
|
87
|
+
"SIM",
|
|
88
|
+
# isort
|
|
89
|
+
"I"
|
|
90
|
+
]
|
|
91
|
+
preview = true
|
|
92
|
+
pydocstyle = { convention = 'google' }
|
|
93
|
+
|
|
94
|
+
[tool.ruff.format]
|
|
95
|
+
quote-style = "double"
|
|
96
|
+
indent-style = "space"
|
|
97
|
+
line-ending = "auto"
|
|
@@ -14,7 +14,8 @@ class Rive(ft.ConstrainedControl):
|
|
|
14
14
|
|
|
15
15
|
src: str
|
|
16
16
|
"""
|
|
17
|
-
The source of your rive animation.
|
|
17
|
+
The source of your rive animation.
|
|
18
|
+
|
|
18
19
|
Can either be a URL or a path to a local asset file.
|
|
19
20
|
"""
|
|
20
21
|
|
|
@@ -25,7 +26,7 @@ class Rive(ft.ConstrainedControl):
|
|
|
25
26
|
|
|
26
27
|
artboard: Optional[str] = None
|
|
27
28
|
"""
|
|
28
|
-
The name of the artboard to use.
|
|
29
|
+
The name of the artboard to use.
|
|
29
30
|
If not specified, the default artboard of the provided `src` is used.
|
|
30
31
|
"""
|
|
31
32
|
|
|
@@ -41,8 +42,8 @@ class Rive(ft.ConstrainedControl):
|
|
|
41
42
|
|
|
42
43
|
use_artboard_size: bool = False
|
|
43
44
|
"""
|
|
44
|
-
Determines whether to use the inherent size of the artboard,
|
|
45
|
-
i.e. the absolute size defined by the artboard,
|
|
45
|
+
Determines whether to use the inherent size of the artboard,
|
|
46
|
+
i.e. the absolute size defined by the artboard,
|
|
46
47
|
or size the control based on the available constraints only (sized by parent).
|
|
47
48
|
"""
|
|
48
49
|
|
|
@@ -74,7 +75,8 @@ class Rive(ft.ConstrainedControl):
|
|
|
74
75
|
clip_rect: Optional[ft.Rect] = None
|
|
75
76
|
"""
|
|
76
77
|
Clip the artboard to this rect.
|
|
77
|
-
|
|
78
|
-
If not supplied it'll default to the constraint size provided by the parent
|
|
78
|
+
|
|
79
|
+
If not supplied it'll default to the constraint size provided by the parent
|
|
80
|
+
control.
|
|
79
81
|
Unless the Artboard has clipping disabled, then no clip will be applied.
|
|
80
82
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-rive
|
|
3
|
-
Version: 0.2.0.
|
|
3
|
+
Version: 0.2.0.dev46
|
|
4
4
|
Summary: Display Rive animations in Flet apps.
|
|
5
5
|
Author-email: Flet contributors <hello@flet.dev>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -41,7 +41,9 @@ This package supports the following platforms:
|
|
|
41
41
|
| Android | ✅ |
|
|
42
42
|
| Web | ✅ |
|
|
43
43
|
|
|
44
|
-
##
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
### Installation
|
|
45
47
|
|
|
46
48
|
To install the `flet-rive` package and add it to your project dependencies:
|
|
47
49
|
|
|
@@ -60,3 +62,7 @@ To install the `flet-rive` package and add it to your project dependencies:
|
|
|
60
62
|
```bash
|
|
61
63
|
poetry add flet-rive
|
|
62
64
|
```
|
|
65
|
+
|
|
66
|
+
### Examples
|
|
67
|
+
|
|
68
|
+
For examples, see [these](./examples).
|
|
@@ -13,10 +13,10 @@ packages:
|
|
|
13
13
|
dependency: transitive
|
|
14
14
|
description:
|
|
15
15
|
name: async
|
|
16
|
-
sha256:
|
|
16
|
+
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
|
|
17
17
|
url: "https://pub.dev"
|
|
18
18
|
source: hosted
|
|
19
|
-
version: "2.
|
|
19
|
+
version: "2.13.0"
|
|
20
20
|
boolean_selector:
|
|
21
21
|
dependency: transitive
|
|
22
22
|
description:
|
|
@@ -65,6 +65,14 @@ packages:
|
|
|
65
65
|
url: "https://pub.dev"
|
|
66
66
|
source: hosted
|
|
67
67
|
version: "3.0.6"
|
|
68
|
+
dbus:
|
|
69
|
+
dependency: transitive
|
|
70
|
+
description:
|
|
71
|
+
name: dbus
|
|
72
|
+
sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c"
|
|
73
|
+
url: "https://pub.dev"
|
|
74
|
+
source: hosted
|
|
75
|
+
version: "0.7.11"
|
|
68
76
|
device_info_plus:
|
|
69
77
|
dependency: transitive
|
|
70
78
|
description:
|
|
@@ -93,10 +101,10 @@ packages:
|
|
|
93
101
|
dependency: transitive
|
|
94
102
|
description:
|
|
95
103
|
name: fake_async
|
|
96
|
-
sha256: "
|
|
104
|
+
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
|
|
97
105
|
url: "https://pub.dev"
|
|
98
106
|
source: hosted
|
|
99
|
-
version: "1.3.
|
|
107
|
+
version: "1.3.3"
|
|
100
108
|
ffi:
|
|
101
109
|
dependency: transitive
|
|
102
110
|
description:
|
|
@@ -117,16 +125,16 @@ packages:
|
|
|
117
125
|
dependency: transitive
|
|
118
126
|
description:
|
|
119
127
|
name: file_picker
|
|
120
|
-
sha256:
|
|
128
|
+
sha256: ef7d2a085c1b1d69d17b6842d0734aad90156de08df6bd3c12496d0bd6ddf8e2
|
|
121
129
|
url: "https://pub.dev"
|
|
122
130
|
source: hosted
|
|
123
|
-
version: "10.
|
|
131
|
+
version: "10.3.1"
|
|
124
132
|
flet:
|
|
125
133
|
dependency: "direct main"
|
|
126
134
|
description:
|
|
127
135
|
path: "packages/flet"
|
|
128
136
|
ref: main
|
|
129
|
-
resolved-ref:
|
|
137
|
+
resolved-ref: "4ea9558543657d31dba3b11d6017beed2e16d447"
|
|
130
138
|
url: "https://github.com/flet-dev/flet.git"
|
|
131
139
|
source: git
|
|
132
140
|
version: "0.70.0"
|
|
@@ -147,10 +155,10 @@ packages:
|
|
|
147
155
|
dependency: "direct dev"
|
|
148
156
|
description:
|
|
149
157
|
name: flutter_lints
|
|
150
|
-
sha256:
|
|
158
|
+
sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
|
|
151
159
|
url: "https://pub.dev"
|
|
152
160
|
source: hosted
|
|
153
|
-
version: "
|
|
161
|
+
version: "3.0.2"
|
|
154
162
|
flutter_localizations:
|
|
155
163
|
dependency: transitive
|
|
156
164
|
description: flutter
|
|
@@ -168,10 +176,10 @@ packages:
|
|
|
168
176
|
dependency: transitive
|
|
169
177
|
description:
|
|
170
178
|
name: flutter_plugin_android_lifecycle
|
|
171
|
-
sha256:
|
|
179
|
+
sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
|
|
172
180
|
url: "https://pub.dev"
|
|
173
181
|
source: hosted
|
|
174
|
-
version: "2.0.
|
|
182
|
+
version: "2.0.29"
|
|
175
183
|
flutter_svg:
|
|
176
184
|
dependency: transitive
|
|
177
185
|
description:
|
|
@@ -226,10 +234,10 @@ packages:
|
|
|
226
234
|
dependency: transitive
|
|
227
235
|
description:
|
|
228
236
|
name: intl
|
|
229
|
-
sha256:
|
|
237
|
+
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
|
|
230
238
|
url: "https://pub.dev"
|
|
231
239
|
source: hosted
|
|
232
|
-
version: "0.
|
|
240
|
+
version: "0.20.2"
|
|
233
241
|
json_annotation:
|
|
234
242
|
dependency: transitive
|
|
235
243
|
description:
|
|
@@ -242,10 +250,10 @@ packages:
|
|
|
242
250
|
dependency: transitive
|
|
243
251
|
description:
|
|
244
252
|
name: leak_tracker
|
|
245
|
-
sha256:
|
|
253
|
+
sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0"
|
|
246
254
|
url: "https://pub.dev"
|
|
247
255
|
source: hosted
|
|
248
|
-
version: "10.0.
|
|
256
|
+
version: "10.0.9"
|
|
249
257
|
leak_tracker_flutter_testing:
|
|
250
258
|
dependency: transitive
|
|
251
259
|
description:
|
|
@@ -266,10 +274,10 @@ packages:
|
|
|
266
274
|
dependency: transitive
|
|
267
275
|
description:
|
|
268
276
|
name: lints
|
|
269
|
-
sha256:
|
|
277
|
+
sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
|
|
270
278
|
url: "https://pub.dev"
|
|
271
279
|
source: hosted
|
|
272
|
-
version: "
|
|
280
|
+
version: "3.0.0"
|
|
273
281
|
logging:
|
|
274
282
|
dependency: transitive
|
|
275
283
|
description:
|
|
@@ -362,10 +370,10 @@ packages:
|
|
|
362
370
|
dependency: transitive
|
|
363
371
|
description:
|
|
364
372
|
name: path_provider_foundation
|
|
365
|
-
sha256: "
|
|
373
|
+
sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
|
|
366
374
|
url: "https://pub.dev"
|
|
367
375
|
source: hosted
|
|
368
|
-
version: "2.4.
|
|
376
|
+
version: "2.4.2"
|
|
369
377
|
path_provider_linux:
|
|
370
378
|
dependency: transitive
|
|
371
379
|
description:
|
|
@@ -478,14 +486,22 @@ packages:
|
|
|
478
486
|
url: "https://pub.dev"
|
|
479
487
|
source: hosted
|
|
480
488
|
version: "0.2.0"
|
|
489
|
+
screenshot:
|
|
490
|
+
dependency: transitive
|
|
491
|
+
description:
|
|
492
|
+
name: screenshot
|
|
493
|
+
sha256: "63817697a7835e6ce82add4228e15d233b74d42975c143ad8cfe07009fab866b"
|
|
494
|
+
url: "https://pub.dev"
|
|
495
|
+
source: hosted
|
|
496
|
+
version: "3.0.0"
|
|
481
497
|
sensors_plus:
|
|
482
498
|
dependency: transitive
|
|
483
499
|
description:
|
|
484
500
|
name: sensors_plus
|
|
485
|
-
sha256: "
|
|
501
|
+
sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
|
|
486
502
|
url: "https://pub.dev"
|
|
487
503
|
source: hosted
|
|
488
|
-
version: "6.1.
|
|
504
|
+
version: "6.1.2"
|
|
489
505
|
sensors_plus_platform_interface:
|
|
490
506
|
dependency: transitive
|
|
491
507
|
description:
|
|
@@ -506,10 +522,10 @@ packages:
|
|
|
506
522
|
dependency: transitive
|
|
507
523
|
description:
|
|
508
524
|
name: shared_preferences_android
|
|
509
|
-
sha256: "
|
|
525
|
+
sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
|
|
510
526
|
url: "https://pub.dev"
|
|
511
527
|
source: hosted
|
|
512
|
-
version: "2.4.
|
|
528
|
+
version: "2.4.11"
|
|
513
529
|
shared_preferences_foundation:
|
|
514
530
|
dependency: transitive
|
|
515
531
|
description:
|
|
@@ -623,18 +639,18 @@ packages:
|
|
|
623
639
|
dependency: transitive
|
|
624
640
|
description:
|
|
625
641
|
name: url_launcher_android
|
|
626
|
-
sha256: "
|
|
642
|
+
sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
|
|
627
643
|
url: "https://pub.dev"
|
|
628
644
|
source: hosted
|
|
629
|
-
version: "6.3.
|
|
645
|
+
version: "6.3.17"
|
|
630
646
|
url_launcher_ios:
|
|
631
647
|
dependency: transitive
|
|
632
648
|
description:
|
|
633
649
|
name: url_launcher_ios
|
|
634
|
-
sha256:
|
|
650
|
+
sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
|
|
635
651
|
url: "https://pub.dev"
|
|
636
652
|
source: hosted
|
|
637
|
-
version: "6.3.
|
|
653
|
+
version: "6.3.4"
|
|
638
654
|
url_launcher_linux:
|
|
639
655
|
dependency: transitive
|
|
640
656
|
description:
|
|
@@ -647,10 +663,10 @@ packages:
|
|
|
647
663
|
dependency: transitive
|
|
648
664
|
description:
|
|
649
665
|
name: url_launcher_macos
|
|
650
|
-
sha256:
|
|
666
|
+
sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
|
|
651
667
|
url: "https://pub.dev"
|
|
652
668
|
source: hosted
|
|
653
|
-
version: "3.2.
|
|
669
|
+
version: "3.2.3"
|
|
654
670
|
url_launcher_platform_interface:
|
|
655
671
|
dependency: transitive
|
|
656
672
|
description:
|
|
@@ -695,10 +711,10 @@ packages:
|
|
|
695
711
|
dependency: transitive
|
|
696
712
|
description:
|
|
697
713
|
name: vector_graphics_compiler
|
|
698
|
-
sha256:
|
|
714
|
+
sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
|
|
699
715
|
url: "https://pub.dev"
|
|
700
716
|
source: hosted
|
|
701
|
-
version: "1.1.
|
|
717
|
+
version: "1.1.18"
|
|
702
718
|
vector_math:
|
|
703
719
|
dependency: transitive
|
|
704
720
|
description:
|
|
@@ -711,10 +727,10 @@ packages:
|
|
|
711
727
|
dependency: transitive
|
|
712
728
|
description:
|
|
713
729
|
name: vm_service
|
|
714
|
-
sha256:
|
|
730
|
+
sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
|
|
715
731
|
url: "https://pub.dev"
|
|
716
732
|
source: hosted
|
|
717
|
-
version: "
|
|
733
|
+
version: "15.0.0"
|
|
718
734
|
web:
|
|
719
735
|
dependency: transitive
|
|
720
736
|
description:
|
|
@@ -743,10 +759,10 @@ packages:
|
|
|
743
759
|
dependency: transitive
|
|
744
760
|
description:
|
|
745
761
|
name: win32
|
|
746
|
-
sha256: "
|
|
762
|
+
sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
|
|
747
763
|
url: "https://pub.dev"
|
|
748
764
|
source: hosted
|
|
749
|
-
version: "5.
|
|
765
|
+
version: "5.14.0"
|
|
750
766
|
win32_registry:
|
|
751
767
|
dependency: transitive
|
|
752
768
|
description:
|
|
@@ -759,10 +775,10 @@ packages:
|
|
|
759
775
|
dependency: transitive
|
|
760
776
|
description:
|
|
761
777
|
name: window_manager
|
|
762
|
-
sha256: "
|
|
778
|
+
sha256: "7eb6d6c4164ec08e1bf978d6e733f3cebe792e2a23fb07cbca25c2872bfdbdcd"
|
|
763
779
|
url: "https://pub.dev"
|
|
764
780
|
source: hosted
|
|
765
|
-
version: "0.5.
|
|
781
|
+
version: "0.5.1"
|
|
766
782
|
window_to_front:
|
|
767
783
|
dependency: transitive
|
|
768
784
|
description:
|
|
@@ -788,5 +804,5 @@ packages:
|
|
|
788
804
|
source: hosted
|
|
789
805
|
version: "6.5.0"
|
|
790
806
|
sdks:
|
|
791
|
-
dart: ">=3.
|
|
807
|
+
dart: ">=3.8.0 <4.0.0"
|
|
792
808
|
flutter: ">=3.29.0"
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "flet-rive"
|
|
3
|
-
version = "0.2.0.dev34"
|
|
4
|
-
description = "Display Rive animations in Flet apps."
|
|
5
|
-
readme = "README.md"
|
|
6
|
-
authors = [{ name = "Flet contributors", email = "hello@flet.dev" }]
|
|
7
|
-
license = "Apache-2.0"
|
|
8
|
-
requires-python = ">=3.10"
|
|
9
|
-
dependencies = [
|
|
10
|
-
"flet >=0.70.0.dev0",
|
|
11
|
-
]
|
|
12
|
-
|
|
13
|
-
[project.urls]
|
|
14
|
-
Homepage = "https://flet.dev"
|
|
15
|
-
Documentation = "https://flet-dev.github.io/flet-rive"
|
|
16
|
-
Repository = "https://github.com/flet-dev/flet-rive"
|
|
17
|
-
Issues = "https://github.com/flet-dev/flet-rive/issues"
|
|
18
|
-
|
|
19
|
-
[tool.setuptools.package-data]
|
|
20
|
-
"flutter.flet_rive" = ["**/*"]
|
|
21
|
-
|
|
22
|
-
[dependency-groups]
|
|
23
|
-
dev = [
|
|
24
|
-
"pre-commit>=4.2.0",
|
|
25
|
-
"ruff>=0.11.7",
|
|
26
|
-
]
|
|
27
|
-
docs = [
|
|
28
|
-
"mkdocs",
|
|
29
|
-
"mkdocs-material",
|
|
30
|
-
"mkdocstrings[python]",
|
|
31
|
-
"mkdocstrings-python-xref",
|
|
32
|
-
"mike",
|
|
33
|
-
"markdown>=3.6",
|
|
34
|
-
"pymdown-extensions",
|
|
35
|
-
"mkdocs-glightbox",
|
|
36
|
-
"mkdocs-section-index",
|
|
37
|
-
"griffe-modernized-annotations",
|
|
38
|
-
"pygments>=2.16",
|
|
39
|
-
]
|
|
40
|
-
|
|
41
|
-
[build-system]
|
|
42
|
-
requires = ["setuptools"]
|
|
43
|
-
build-backend = "setuptools.build_meta"
|
|
44
|
-
|
|
45
|
-
[tool.ruff]
|
|
46
|
-
line-length = 88
|
|
47
|
-
target-version = "py39"
|
|
48
|
-
fix = true
|
|
49
|
-
show-fixes = true
|
|
50
|
-
|
|
51
|
-
[tool.ruff.lint]
|
|
52
|
-
select = [
|
|
53
|
-
# pycodestyle
|
|
54
|
-
"E",
|
|
55
|
-
# Pyflakes
|
|
56
|
-
"F",
|
|
57
|
-
# pyupgrade
|
|
58
|
-
"UP",
|
|
59
|
-
# flake8-bugbear
|
|
60
|
-
"B",
|
|
61
|
-
# flake8-simplify
|
|
62
|
-
"SIM",
|
|
63
|
-
# isort
|
|
64
|
-
"I"
|
|
65
|
-
]
|
|
66
|
-
preview = true
|
|
67
|
-
|
|
68
|
-
[tool.ruff.format]
|
|
69
|
-
quote-style = "double"
|
|
70
|
-
indent-style = "space"
|
|
71
|
-
line-ending = "auto"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from .rive import Rive as Rive
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{flet_rive-0.2.0.dev34 → flet_rive-0.2.0.dev46}/src/flutter/flet_rive/lib/src/extension.dart
RENAMED
|
File without changes
|
|
File without changes
|