flet-lottie 0.2.0.dev60__py3-none-any.whl → 0.70.0.dev6561__py3-none-any.whl

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-lottie might be problematic. Click here for more details.

flet_lottie/lottie.py CHANGED
@@ -6,24 +6,23 @@ __all__ = ["Lottie"]
6
6
 
7
7
 
8
8
  @ft.control("Lottie")
9
- class Lottie(ft.ConstrainedControl):
9
+ class Lottie(ft.LayoutControl):
10
10
  """
11
11
  Displays lottie animations.
12
-
13
- Raises:
14
- AssertionError: If neither [`src`][(c).] nor
15
- [`src_base64`][(c).] is provided.
16
12
  """
17
13
 
18
14
  src: Optional[str] = None
19
15
  """
20
16
  The source of the Lottie file.
21
17
 
22
- Can be a URL or a local [asset file](https://flet.dev/docs/cookbook/assets).
18
+ Can be a URL or a local [asset file](https://docs.flet.dev/cookbook/assets).
23
19
 
24
20
  Note:
25
- If both `src` and [`src_base64`][..] are provided,
21
+ If both `src` and [`src_base64`][(c).] are provided,
26
22
  `src_base64` will be prioritized/used.
23
+
24
+ Raises:
25
+ ValueError: If neither `src` nor [`src_base64`][(c).] is provided.
27
26
  """
28
27
 
29
28
  src_base64: Optional[str] = None
@@ -31,8 +30,11 @@ class Lottie(ft.ConstrainedControl):
31
30
  The base64 encoded string of the Lottie file.
32
31
 
33
32
  Note:
34
- If both `src_base64` and [`src`][..] are provided,
33
+ If both `src_base64` and [`src`][(c).] are provided,
35
34
  `src_base64` will be prioritized/used.
35
+
36
+ Raises:
37
+ ValueError: If neither `src_base64` nor [`src`][(c).] is provided.
36
38
  """
37
39
 
38
40
  repeat: bool = True
@@ -40,7 +42,7 @@ class Lottie(ft.ConstrainedControl):
40
42
  Whether the animation should repeat in a loop.
41
43
 
42
44
  Note:
43
- Has no effect if [`animate`][..] is `False`.
45
+ Has no effect if [`animate`][(c).] is `False`.
44
46
  """
45
47
 
46
48
  reverse: bool = False
@@ -49,7 +51,7 @@ class Lottie(ft.ConstrainedControl):
49
51
  (from start to end and then continuously from end to start).
50
52
 
51
53
  Note:
52
- Has no effect if [`animate`][..] or [`repeat`][..] is `False`.
54
+ Has no effect if [`animate`][(c).] or [`repeat`][(c).] is `False`.
53
55
  """
54
56
 
55
57
  animate: bool = True
@@ -93,7 +95,7 @@ class Lottie(ft.ConstrainedControl):
93
95
  A control to display when an error occurs
94
96
  while loading the Lottie animation.
95
97
 
96
- For more information on the error, see [`on_error`][..].
98
+ For more information on the error, see [`on_error`][(c).].
97
99
  """
98
100
 
99
101
  on_error: Optional[ft.ControlEventHandler["Lottie"]] = None
@@ -106,6 +108,5 @@ class Lottie(ft.ConstrainedControl):
106
108
 
107
109
  def before_update(self):
108
110
  super().before_update()
109
- assert self.src or self.src_base64, (
110
- "at least one of src and src_base64 must be provided"
111
- )
111
+ if not (self.src or self.src_base64):
112
+ raise ValueError("at least one of src and src_base64 must be provided")
@@ -1,24 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-lottie
3
- Version: 0.2.0.dev60
3
+ Version: 0.70.0.dev6561
4
4
  Summary: Display Lottie animations in Flet apps.
5
5
  Author-email: Flet contributors <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
7
7
  Project-URL: Homepage, https://flet.dev
8
- Project-URL: Documentation, https://flet-dev.github.io/flet-lottie
9
- Project-URL: Repository, https://github.com/flet-dev/flet-lottie
10
- Project-URL: Issues, https://github.com/flet-dev/flet-lottie/issues
8
+ Project-URL: Documentation, https://docs.flet.dev/lottie
9
+ Project-URL: Repository, https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-lottie
10
+ Project-URL: Issues, https://github.com/flet-dev/flet/issues
11
11
  Requires-Python: >=3.10
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
- Requires-Dist: flet>=0.70.0.dev0
14
+ Requires-Dist: flet==0.70.0.dev6561
15
15
  Dynamic: license-file
16
16
 
17
17
  # flet-lottie
18
18
 
19
19
  [![pypi](https://img.shields.io/pypi/v/flet-lottie.svg)](https://pypi.python.org/pypi/flet-lottie)
20
20
  [![downloads](https://static.pepy.tech/badge/flet-lottie/month)](https://pepy.tech/project/flet-lottie)
21
- [![license](https://img.shields.io/github/license/flet-dev/flet-lottie.svg)](https://github.com/flet-dev/flet-lottie/blob/main/LICENSE)
21
+ [![license](https://img.shields.io/badge/License-Apache_2.0-green.svg)](https://github.com/flet-dev/flet/blob/main/sdk/python/packages/flet-lottie/LICENSE)
22
22
 
23
23
  A [Flet](https://flet.dev) extension package for displaying Lottie animations.
24
24
 
@@ -26,20 +26,13 @@ It is based on the [lottie](https://pub.dev/packages/lottie) Flutter package.
26
26
 
27
27
  ## Documentation
28
28
 
29
- Detailed documentation to this package can be found [here](https://flet-dev.github.io/flet-lottie/).
29
+ Detailed documentation to this package can be found [here](https://docs.flet.dev/lottie/).
30
30
 
31
31
  ## Platform Support
32
32
 
33
- This package supports the following platforms:
34
-
35
- | Platform | Supported |
36
- |----------|:---------:|
37
- | Windows | ✅ |
38
- | macOS | ✅ |
39
- | Linux | ✅ |
40
- | iOS | ✅ |
41
- | Android | ✅ |
42
- | Web | ✅ |
33
+ | Platform | Windows | macOS | Linux | iOS | Android | Web |
34
+ |----------|---------|-------|-------|-----|---------|-----|
35
+ | Supported| ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
43
36
 
44
37
  ## Usage
45
38
 
@@ -58,11 +51,6 @@ To install the `flet-lottie` package and add it to your project dependencies:
58
51
  ```
59
52
  After this, you will have to manually add this package to your `requirements.txt` or `pyproject.toml`.
60
53
 
61
- - Using `poetry`:
62
- ```bash
63
- poetry add flet-lottie
64
- ```
65
-
66
54
  ### Examples
67
55
 
68
- For examples, see [these](./examples).
56
+ For examples, see [these](https://github.com/flet-dev/flet/tree/main/sdk/python/examples/controls/lottie).
@@ -0,0 +1,13 @@
1
+ flet_lottie/__init__.py,sha256=SpVjw6l9hszMJP2j7y-p3qScJDYHRiDXOWS1nMjG29c,60
2
+ flet_lottie/lottie.py,sha256=kWQ1323qD6V2wWMbjdCsZaE8sAKvQ00qPiI6qM2z410,2706
3
+ flet_lottie-0.70.0.dev6561.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4
+ flutter/flet_lottie/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
5
+ flutter/flet_lottie/pubspec.lock,sha256=EH--i4i3ovj2kp-RsI_q78-IPe0jCGCLmFIbfFSXbg0,23865
6
+ flutter/flet_lottie/pubspec.yaml,sha256=FEW_NnMYi4kguw3AW2xqaoCcbzZxnPPmH6rwUAXWrrQ,355
7
+ flutter/flet_lottie/lib/flet_lottie.dart,sha256=kvOuBQkwU9DRqcfAhwamrYXmy3uyOB48-R3rXVukAsI,66
8
+ flutter/flet_lottie/lib/src/extension.dart,sha256=AQFOiue9kMRMX5jn_YSmTKx44CYuoIsemLNT38CLjbw,347
9
+ flutter/flet_lottie/lib/src/lottie.dart,sha256=IWwIql3oUiTwE8CSdGsCPHGZBwwxyU7SSm0mhkkRdXQ,3971
10
+ flet_lottie-0.70.0.dev6561.dist-info/METADATA,sha256=zGh1MkheNBBMlj2cgNabEP6Gcw8bw5pAHjUcjUu9Iu4,1914
11
+ flet_lottie-0.70.0.dev6561.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
+ flet_lottie-0.70.0.dev6561.dist-info/top_level.txt,sha256=RFKJcUq-1rW9i9tkjYL1AzMuJFXiAqoWK0YIjIG3Gj8,20
13
+ flet_lottie-0.70.0.dev6561.dist-info/RECORD,,
@@ -5,10 +5,10 @@ packages:
5
5
  dependency: transitive
6
6
  description:
7
7
  name: archive
8
- sha256: cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d
8
+ sha256: "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd"
9
9
  url: "https://pub.dev"
10
10
  source: hosted
11
- version: "3.6.1"
11
+ version: "4.0.7"
12
12
  args:
13
13
  dependency: transitive
14
14
  description:
@@ -61,18 +61,18 @@ packages:
61
61
  dependency: transitive
62
62
  description:
63
63
  name: cross_file
64
- sha256: "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670"
64
+ sha256: "942a4791cd385a68ccb3b32c71c427aba508a1bb949b86dff2adbe4049f16239"
65
65
  url: "https://pub.dev"
66
66
  source: hosted
67
- version: "0.3.4+2"
67
+ version: "0.3.5"
68
68
  crypto:
69
69
  dependency: transitive
70
70
  description:
71
71
  name: crypto
72
- sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
72
+ sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf
73
73
  url: "https://pub.dev"
74
74
  source: hosted
75
- version: "3.0.6"
75
+ version: "3.0.7"
76
76
  dbus:
77
77
  dependency: transitive
78
78
  description:
@@ -85,10 +85,10 @@ packages:
85
85
  dependency: transitive
86
86
  description:
87
87
  name: device_info_plus
88
- sha256: "98f28b42168cc509abc92f88518882fd58061ea372d7999aecc424345c7bff6a"
88
+ sha256: dd0e8e02186b2196c7848c9d394a5fd6e5b57a43a546082c5820b1ec72317e33
89
89
  url: "https://pub.dev"
90
90
  source: hosted
91
- version: "11.5.0"
91
+ version: "12.2.0"
92
92
  device_info_plus_platform_interface:
93
93
  dependency: transitive
94
94
  description:
@@ -133,18 +133,16 @@ packages:
133
133
  dependency: transitive
134
134
  description:
135
135
  name: file_picker
136
- sha256: ef7d2a085c1b1d69d17b6842d0734aad90156de08df6bd3c12496d0bd6ddf8e2
136
+ sha256: f2d9f173c2c14635cc0e9b14c143c49ef30b4934e8d1d274d6206fcb0086a06f
137
137
  url: "https://pub.dev"
138
138
  source: hosted
139
- version: "10.3.1"
139
+ version: "10.3.3"
140
140
  flet:
141
141
  dependency: "direct main"
142
142
  description:
143
- path: "packages/flet"
144
- ref: main
145
- resolved-ref: "4ea9558543657d31dba3b11d6017beed2e16d447"
146
- url: "https://github.com/flet-dev/flet.git"
147
- source: git
143
+ path: "../../../../../../../packages/flet"
144
+ relative: true
145
+ source: path
148
146
  version: "0.70.0"
149
147
  flutter:
150
148
  dependency: "direct main"
@@ -184,18 +182,18 @@ packages:
184
182
  dependency: transitive
185
183
  description:
186
184
  name: flutter_plugin_android_lifecycle
187
- sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
185
+ sha256: "306f0596590e077338312f38837f595c04f28d6cdeeac392d3d74df2f0003687"
188
186
  url: "https://pub.dev"
189
187
  source: hosted
190
- version: "2.0.29"
188
+ version: "2.0.32"
191
189
  flutter_svg:
192
190
  dependency: transitive
193
191
  description:
194
192
  name: flutter_svg
195
- sha256: d44bf546b13025ec7353091516f6881f1d4c633993cb109c3916c3a0159dadf1
193
+ sha256: b9c2ad5872518a27507ab432d1fb97e8813b05f0fc693f9d40fad06d073e0678
196
194
  url: "https://pub.dev"
197
195
  source: hosted
198
- version: "2.1.0"
196
+ version: "2.2.1"
199
197
  flutter_test:
200
198
  dependency: "direct dev"
201
199
  description: flutter
@@ -218,10 +216,10 @@ packages:
218
216
  dependency: transitive
219
217
  description:
220
218
  name: http
221
- sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
219
+ sha256: bb2ce4590bc2667c96f318d68cac1b5a7987ec819351d32b1c987239a815e007
222
220
  url: "https://pub.dev"
223
221
  source: hosted
224
- version: "1.3.0"
222
+ version: "1.5.0"
225
223
  http_parser:
226
224
  dependency: transitive
227
225
  description:
@@ -250,26 +248,26 @@ packages:
250
248
  dependency: transitive
251
249
  description:
252
250
  name: leak_tracker
253
- sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0"
251
+ sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
254
252
  url: "https://pub.dev"
255
253
  source: hosted
256
- version: "10.0.9"
254
+ version: "11.0.2"
257
255
  leak_tracker_flutter_testing:
258
256
  dependency: transitive
259
257
  description:
260
258
  name: leak_tracker_flutter_testing
261
- sha256: f8b613e7e6a13ec79cfdc0e97638fddb3ab848452eff057653abd3edba760573
259
+ sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
262
260
  url: "https://pub.dev"
263
261
  source: hosted
264
- version: "3.0.9"
262
+ version: "3.0.10"
265
263
  leak_tracker_testing:
266
264
  dependency: transitive
267
265
  description:
268
266
  name: leak_tracker_testing
269
- sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3"
267
+ sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
270
268
  url: "https://pub.dev"
271
269
  source: hosted
272
- version: "3.0.1"
270
+ version: "3.0.2"
273
271
  lints:
274
272
  dependency: transitive
275
273
  description:
@@ -290,10 +288,10 @@ packages:
290
288
  dependency: "direct main"
291
289
  description:
292
290
  name: lottie
293
- sha256: "377d87b8dcef640c04717e93afb86a510f0e1117a399ab94dc4b3f39c85eaa87"
291
+ sha256: "8ae0be46dbd9e19641791dc12ee480d34e1fd3f84c749adc05f3ad9342b71b95"
294
292
  url: "https://pub.dev"
295
293
  source: hosted
296
- version: "3.3.0"
294
+ version: "3.3.2"
297
295
  markdown:
298
296
  dependency: transitive
299
297
  description:
@@ -370,18 +368,18 @@ packages:
370
368
  dependency: transitive
371
369
  description:
372
370
  name: path_provider_android
373
- sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9
371
+ sha256: e122c5ea805bb6773bb12ce667611265980940145be920cd09a4b0ec0285cb16
374
372
  url: "https://pub.dev"
375
373
  source: hosted
376
- version: "2.2.17"
374
+ version: "2.2.20"
377
375
  path_provider_foundation:
378
376
  dependency: transitive
379
377
  description:
380
378
  name: path_provider_foundation
381
- sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
379
+ sha256: efaec349ddfc181528345c56f8eda9d6cccd71c177511b132c6a0ddaefaa2738
382
380
  url: "https://pub.dev"
383
381
  source: hosted
384
- version: "2.4.2"
382
+ version: "2.4.3"
385
383
  path_provider_linux:
386
384
  dependency: transitive
387
385
  description:
@@ -410,10 +408,10 @@ packages:
410
408
  dependency: transitive
411
409
  description:
412
410
  name: petitparser
413
- sha256: "07c8f0b1913bcde1ff0d26e57ace2f3012ccbf2b204e070290dad3bb22797646"
411
+ sha256: "1a97266a94f7350d30ae522c0af07890c70b8e62c71e8e3920d1db4d23c057d1"
414
412
  url: "https://pub.dev"
415
413
  source: hosted
416
- version: "6.1.0"
414
+ version: "7.0.1"
417
415
  platform:
418
416
  dependency: transitive
419
417
  description:
@@ -430,14 +428,22 @@ packages:
430
428
  url: "https://pub.dev"
431
429
  source: hosted
432
430
  version: "2.1.8"
431
+ posix:
432
+ dependency: transitive
433
+ description:
434
+ name: posix
435
+ sha256: "6323a5b0fa688b6a010df4905a56b00181479e6d10534cecfecede2aa55add61"
436
+ url: "https://pub.dev"
437
+ source: hosted
438
+ version: "6.0.3"
433
439
  provider:
434
440
  dependency: transitive
435
441
  description:
436
442
  name: provider
437
- sha256: "4abbd070a04e9ddc287673bf5a030c7ca8b685ff70218720abab8b092f53dd84"
443
+ sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272"
438
444
  url: "https://pub.dev"
439
445
  source: hosted
440
- version: "6.1.5"
446
+ version: "6.1.5+1"
441
447
  screen_retriever:
442
448
  dependency: transitive
443
449
  description:
@@ -506,26 +512,26 @@ packages:
506
512
  dependency: transitive
507
513
  description:
508
514
  name: shared_preferences
509
- sha256: "846849e3e9b68f3ef4b60c60cf4b3e02e9321bc7f4d8c4692cf87ffa82fc8a3a"
515
+ sha256: "6e8bf70b7fef813df4e9a36f658ac46d107db4b4cfe1048b477d4e453a8159f5"
510
516
  url: "https://pub.dev"
511
517
  source: hosted
512
- version: "2.5.2"
518
+ version: "2.5.3"
513
519
  shared_preferences_android:
514
520
  dependency: transitive
515
521
  description:
516
522
  name: shared_preferences_android
517
- sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
523
+ sha256: "34266009473bf71d748912da4bf62d439185226c03e01e2d9687bc65bbfcb713"
518
524
  url: "https://pub.dev"
519
525
  source: hosted
520
- version: "2.4.11"
526
+ version: "2.4.15"
521
527
  shared_preferences_foundation:
522
528
  dependency: transitive
523
529
  description:
524
530
  name: shared_preferences_foundation
525
- sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
531
+ sha256: "1c33a907142607c40a7542768ec9badfd16293bac51da3a4482623d15845f88b"
526
532
  url: "https://pub.dev"
527
533
  source: hosted
528
- version: "2.5.4"
534
+ version: "2.5.5"
529
535
  shared_preferences_linux:
530
536
  dependency: transitive
531
537
  description:
@@ -607,10 +613,10 @@ packages:
607
613
  dependency: transitive
608
614
  description:
609
615
  name: test_api
610
- sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd
616
+ sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
611
617
  url: "https://pub.dev"
612
618
  source: hosted
613
- version: "0.7.4"
619
+ version: "0.7.6"
614
620
  typed_data:
615
621
  dependency: transitive
616
622
  description:
@@ -623,26 +629,26 @@ packages:
623
629
  dependency: transitive
624
630
  description:
625
631
  name: url_launcher
626
- sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603"
632
+ sha256: f6a7e5c4835bb4e3026a04793a4199ca2d14c739ec378fdfe23fc8075d0439f8
627
633
  url: "https://pub.dev"
628
634
  source: hosted
629
- version: "6.3.1"
635
+ version: "6.3.2"
630
636
  url_launcher_android:
631
637
  dependency: transitive
632
638
  description:
633
639
  name: url_launcher_android
634
- sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
640
+ sha256: "5c8b6c2d89a78f5a1cca70a73d9d5f86c701b36b42f9c9dac7bad592113c28e9"
635
641
  url: "https://pub.dev"
636
642
  source: hosted
637
- version: "6.3.17"
643
+ version: "6.3.24"
638
644
  url_launcher_ios:
639
645
  dependency: transitive
640
646
  description:
641
647
  name: url_launcher_ios
642
- sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
648
+ sha256: "6b63f1441e4f653ae799166a72b50b1767321ecc263a57aadf825a7a2a5477d9"
643
649
  url: "https://pub.dev"
644
650
  source: hosted
645
- version: "6.3.4"
651
+ version: "6.3.5"
646
652
  url_launcher_linux:
647
653
  dependency: transitive
648
654
  description:
@@ -655,10 +661,10 @@ packages:
655
661
  dependency: transitive
656
662
  description:
657
663
  name: url_launcher_macos
658
- sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
664
+ sha256: "8262208506252a3ed4ff5c0dc1e973d2c0e0ef337d0a074d35634da5d44397c9"
659
665
  url: "https://pub.dev"
660
666
  source: hosted
661
- version: "3.2.3"
667
+ version: "3.2.4"
662
668
  url_launcher_platform_interface:
663
669
  dependency: transitive
664
670
  description:
@@ -703,26 +709,26 @@ packages:
703
709
  dependency: transitive
704
710
  description:
705
711
  name: vector_graphics_compiler
706
- sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
712
+ sha256: d354a7ec6931e6047785f4db12a1f61ec3d43b207fc0790f863818543f8ff0dc
707
713
  url: "https://pub.dev"
708
714
  source: hosted
709
- version: "1.1.18"
715
+ version: "1.1.19"
710
716
  vector_math:
711
717
  dependency: transitive
712
718
  description:
713
719
  name: vector_math
714
- sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
720
+ sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
715
721
  url: "https://pub.dev"
716
722
  source: hosted
717
- version: "2.1.4"
723
+ version: "2.2.0"
718
724
  vm_service:
719
725
  dependency: transitive
720
726
  description:
721
727
  name: vm_service
722
- sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
728
+ sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
723
729
  url: "https://pub.dev"
724
730
  source: hosted
725
- version: "15.0.0"
731
+ version: "15.0.2"
726
732
  web:
727
733
  dependency: transitive
728
734
  description:
@@ -751,10 +757,10 @@ packages:
751
757
  dependency: transitive
752
758
  description:
753
759
  name: win32
754
- sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
760
+ sha256: d7cb55e04cd34096cd3a79b3330245f54cb96a370a1c27adb3c84b917de8b08e
755
761
  url: "https://pub.dev"
756
762
  source: hosted
757
- version: "5.14.0"
763
+ version: "5.15.0"
758
764
  win32_registry:
759
765
  dependency: transitive
760
766
  description:
@@ -791,10 +797,10 @@ packages:
791
797
  dependency: transitive
792
798
  description:
793
799
  name: xml
794
- sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226
800
+ sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025"
795
801
  url: "https://pub.dev"
796
802
  source: hosted
797
- version: "6.5.0"
803
+ version: "6.6.1"
798
804
  sdks:
799
- dart: ">=3.8.0 <4.0.0"
800
- flutter: ">=3.29.0"
805
+ dart: ">=3.9.0 <4.0.0"
806
+ flutter: ">=3.35.0"
@@ -1,22 +1,22 @@
1
1
  name: flet_lottie
2
2
  description: Flet Lottie control
3
- homepage: https://flet.dev
4
- repository: https://github.com/flet-dev/flet-lottie/src/flutter/flet_lottie
5
- version: 0.2.0
3
+ version: 0.1.0
6
4
  publish_to: none
5
+
7
6
  environment:
8
7
  sdk: '>=3.2.3 <4.0.0'
9
- flutter: '>=1.17.0'
8
+ flutter: ">=1.17.0"
9
+
10
10
  dependencies:
11
11
  flutter:
12
12
  sdk: flutter
13
+
13
14
  collection: ^1.16.0
14
- lottie: 3.3.0
15
+ lottie: 3.3.2
16
+
15
17
  flet:
16
- git:
17
- url: https://github.com/flet-dev/flet.git
18
- path: packages/flet
19
- ref: main
18
+ path: ../../../../../../../packages/flet
19
+
20
20
  dev_dependencies:
21
21
  flutter_test:
22
22
  sdk: flutter
@@ -1,16 +0,0 @@
1
- flet_lottie/__init__.py,sha256=SpVjw6l9hszMJP2j7y-p3qScJDYHRiDXOWS1nMjG29c,60
2
- flet_lottie/lottie.py,sha256=wzzabD94fkL271RfCiu-WRX2pIHaydLtm32-EMeSXeA,2623
3
- flet_lottie-0.2.0.dev60.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
4
- flutter/flet_lottie/CHANGELOG.md,sha256=-7pCYFGML9PyWTbSp2ZOQ6MM9bBaeYIk82Ngeuy3oNM,56
5
- flutter/flet_lottie/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
6
- flutter/flet_lottie/README.md,sha256=OgI2ZU2SVP2IEyl49IASnC7Al17h1FQ035nKSP6UPaU,62
7
- flutter/flet_lottie/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
8
- flutter/flet_lottie/pubspec.lock,sha256=Pxgy2iItf3gOyFRLnwg2BHKhDJJGVtc2awsMQFXGycA,23727
9
- flutter/flet_lottie/pubspec.yaml,sha256=5uoowxOHLukFO8AFSNkdFUeFdRRw_oGIEWwErWYbVQE,507
10
- flutter/flet_lottie/lib/flet_lottie.dart,sha256=kvOuBQkwU9DRqcfAhwamrYXmy3uyOB48-R3rXVukAsI,66
11
- flutter/flet_lottie/lib/src/extension.dart,sha256=AQFOiue9kMRMX5jn_YSmTKx44CYuoIsemLNT38CLjbw,347
12
- flutter/flet_lottie/lib/src/lottie.dart,sha256=IWwIql3oUiTwE8CSdGsCPHGZBwwxyU7SSm0mhkkRdXQ,3971
13
- flet_lottie-0.2.0.dev60.dist-info/METADATA,sha256=7ujtlx1ucUQu-_qdK9HdbQ5_DjnhZUIbpxLGasIqohU,1943
14
- flet_lottie-0.2.0.dev60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15
- flet_lottie-0.2.0.dev60.dist-info/top_level.txt,sha256=RFKJcUq-1rW9i9tkjYL1AzMuJFXiAqoWK0YIjIG3Gj8,20
16
- flet_lottie-0.2.0.dev60.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- # 0.2.0
2
-
3
- - TBA
4
-
5
- # 0.1.0
6
-
7
- Initial release of the package.
@@ -1,201 +0,0 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction,
10
- and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by
13
- the copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all
16
- other entities that control, are controlled by, or are under common
17
- control with that entity. For the purposes of this definition,
18
- "control" means (i) the power, direct or indirect, to cause the
19
- direction or management of such entity, whether by contract or
20
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
- outstanding shares, or (iii) beneficial ownership of such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity
24
- exercising permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation
28
- source, and configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical
31
- transformation or translation of a Source form, including but
32
- not limited to compiled object code, generated documentation,
33
- and conversions to other media types.
34
-
35
- "Work" shall mean the work of authorship, whether in Source or
36
- Object form, made available under the License, as indicated by a
37
- copyright notice that is included in or attached to the work
38
- (an example is provided in the Appendix below).
39
-
40
- "Derivative Works" shall mean any work, whether in Source or Object
41
- form, that is based on (or derived from) the Work and for which the
42
- editorial revisions, annotations, elaborations, or other modifications
43
- represent, as a whole, an original work of authorship. For the purposes
44
- of this License, Derivative Works shall not include works that remain
45
- separable from, or merely link (or bind by name) to the interfaces of,
46
- the Work and Derivative Works thereof.
47
-
48
- "Contribution" shall mean any work of authorship, including
49
- the original version of the Work and any modifications or additions
50
- to that Work or Derivative Works thereof, that is intentionally
51
- submitted to Licensor for inclusion in the Work by the copyright owner
52
- or by an individual or Legal Entity authorized to submit on behalf of
53
- the copyright owner. For the purposes of this definition, "submitted"
54
- means any form of electronic, verbal, or written communication sent
55
- to the Licensor or its representatives, including but not limited to
56
- communication on electronic mailing lists, source code control systems,
57
- and issue tracking systems that are managed by, or on behalf of, the
58
- Licensor for the purpose of discussing and improving the Work, but
59
- excluding communication that is conspicuously marked or otherwise
60
- designated in writing by the copyright owner as "Not a Contribution."
61
-
62
- "Contributor" shall mean Licensor and any individual or Legal Entity
63
- on behalf of whom a Contribution has been received by Licensor and
64
- subsequently incorporated within the Work.
65
-
66
- 2. Grant of Copyright License. Subject to the terms and conditions of
67
- this License, each Contributor hereby grants to You a perpetual,
68
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
- copyright license to reproduce, prepare Derivative Works of,
70
- publicly display, publicly perform, sublicense, and distribute the
71
- Work and such Derivative Works in Source or Object form.
72
-
73
- 3. Grant of Patent License. Subject to the terms and conditions of
74
- this License, each Contributor hereby grants to You a perpetual,
75
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
- (except as stated in this section) patent license to make, have made,
77
- use, offer to sell, sell, import, and otherwise transfer the Work,
78
- where such license applies only to those patent claims licensable
79
- by such Contributor that are necessarily infringed by their
80
- Contribution(s) alone or by combination of their Contribution(s)
81
- with the Work to which such Contribution(s) was submitted. If You
82
- institute patent litigation against any entity (including a
83
- cross-claim or counterclaim in a lawsuit) alleging that the Work
84
- or a Contribution incorporated within the Work constitutes direct
85
- or contributory patent infringement, then any patent licenses
86
- granted to You under this License for that Work shall terminate
87
- as of the date such litigation is filed.
88
-
89
- 4. Redistribution. You may reproduce and distribute copies of the
90
- Work or Derivative Works thereof in any medium, with or without
91
- modifications, and in Source or Object form, provided that You
92
- meet the following conditions:
93
-
94
- (a) You must give any other recipients of the Work or
95
- Derivative Works a copy of this License; and
96
-
97
- (b) You must cause any modified files to carry prominent notices
98
- stating that You changed the files; and
99
-
100
- (c) You must retain, in the Source form of any Derivative Works
101
- that You distribute, all copyright, patent, trademark, and
102
- attribution notices from the Source form of the Work,
103
- excluding those notices that do not pertain to any part of
104
- the Derivative Works; and
105
-
106
- (d) If the Work includes a "NOTICE" text file as part of its
107
- distribution, then any Derivative Works that You distribute must
108
- include a readable copy of the attribution notices contained
109
- within such NOTICE file, excluding those notices that do not
110
- pertain to any part of the Derivative Works, in at least one
111
- of the following places: within a NOTICE text file distributed
112
- as part of the Derivative Works; within the Source form or
113
- documentation, if provided along with the Derivative Works; or,
114
- within a display generated by the Derivative Works, if and
115
- wherever such third-party notices normally appear. The contents
116
- of the NOTICE file are for informational purposes only and
117
- do not modify the License. You may add Your own attribution
118
- notices within Derivative Works that You distribute, alongside
119
- or as an addendum to the NOTICE text from the Work, provided
120
- that such additional attribution notices cannot be construed
121
- as modifying the License.
122
-
123
- You may add Your own copyright statement to Your modifications and
124
- may provide additional or different license terms and conditions
125
- for use, reproduction, or distribution of Your modifications, or
126
- for any such Derivative Works as a whole, provided Your use,
127
- reproduction, and distribution of the Work otherwise complies with
128
- the conditions stated in this License.
129
-
130
- 5. Submission of Contributions. Unless You explicitly state otherwise,
131
- any Contribution intentionally submitted for inclusion in the Work
132
- by You to the Licensor shall be under the terms and conditions of
133
- this License, without any additional terms or conditions.
134
- Notwithstanding the above, nothing herein shall supersede or modify
135
- the terms of any separate license agreement you may have executed
136
- with Licensor regarding such Contributions.
137
-
138
- 6. Trademarks. This License does not grant permission to use the trade
139
- names, trademarks, service marks, or product names of the Licensor,
140
- except as required for reasonable and customary use in describing the
141
- origin of the Work and reproducing the content of the NOTICE file.
142
-
143
- 7. Disclaimer of Warranty. Unless required by applicable law or
144
- agreed to in writing, Licensor provides the Work (and each
145
- Contributor provides its Contributions) on an "AS IS" BASIS,
146
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
- implied, including, without limitation, any warranties or conditions
148
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
- PARTICULAR PURPOSE. You are solely responsible for determining the
150
- appropriateness of using or redistributing the Work and assume any
151
- risks associated with Your exercise of permissions under this License.
152
-
153
- 8. Limitation of Liability. In no event and under no legal theory,
154
- whether in tort (including negligence), contract, or otherwise,
155
- unless required by applicable law (such as deliberate and grossly
156
- negligent acts) or agreed to in writing, shall any Contributor be
157
- liable to You for damages, including any direct, indirect, special,
158
- incidental, or consequential damages of any character arising as a
159
- result of this License or out of the use or inability to use the
160
- Work (including but not limited to damages for loss of goodwill,
161
- work stoppage, computer failure or malfunction, or any and all
162
- other commercial damages or losses), even if such Contributor
163
- has been advised of the possibility of such damages.
164
-
165
- 9. Accepting Warranty or Additional Liability. While redistributing
166
- the Work or Derivative Works thereof, You may choose to offer,
167
- and charge a fee for, acceptance of support, warranty, indemnity,
168
- or other liability obligations and/or rights consistent with this
169
- License. However, in accepting such obligations, You may act only
170
- on Your own behalf and on Your sole responsibility, not on behalf
171
- of any other Contributor, and only if You agree to indemnify,
172
- defend, and hold each Contributor harmless for any liability
173
- incurred by, or claims asserted against, such Contributor by reason
174
- of your accepting any such warranty or additional liability.
175
-
176
- END OF TERMS AND CONDITIONS
177
-
178
- APPENDIX: How to apply the Apache License to your work.
179
-
180
- To apply the Apache License to your work, attach the following
181
- boilerplate notice, with the fields enclosed by brackets "[]"
182
- replaced with your own identifying information. (Don't include
183
- the brackets!) The text should be enclosed in the appropriate
184
- comment syntax for the file format. We also recommend that a
185
- file or class name and description of purpose be included on the
186
- same "printed page" as the copyright notice for easier
187
- identification within third-party archives.
188
-
189
- Copyright [yyyy] [name of copyright owner]
190
-
191
- Licensed under the Apache License, Version 2.0 (the "License");
192
- you may not use this file except in compliance with the License.
193
- You may obtain a copy of the License at
194
-
195
- http://www.apache.org/licenses/LICENSE-2.0
196
-
197
- Unless required by applicable law or agreed to in writing, software
198
- distributed under the License is distributed on an "AS IS" BASIS,
199
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
- See the License for the specific language governing permissions and
201
- limitations under the License.
@@ -1,3 +0,0 @@
1
- # Flet `Lottie` control
2
-
3
- `Lottie` control to use in Flet apps.