flet-video 0.2.0.dev84__py3-none-any.whl → 0.2.0.dev89__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-video might be problematic. Click here for more details.
- flet_video/__init__.py +2 -2
- flet_video/video.py +29 -79
- {flet_video-0.2.0.dev84.dist-info → flet_video-0.2.0.dev89.dist-info}/METADATA +6 -4
- {flet_video-0.2.0.dev84.dist-info → flet_video-0.2.0.dev89.dist-info}/RECORD +8 -8
- flutter/flet_video/pubspec.lock +46 -38
- {flet_video-0.2.0.dev84.dist-info → flet_video-0.2.0.dev89.dist-info}/WHEEL +0 -0
- {flet_video-0.2.0.dev84.dist-info → flet_video-0.2.0.dev89.dist-info}/licenses/LICENSE +0 -0
- {flet_video-0.2.0.dev84.dist-info → flet_video-0.2.0.dev89.dist-info}/top_level.txt +0 -0
flet_video/__init__.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
from .types import (
|
|
1
|
+
from flet_video.types import (
|
|
2
2
|
PlaylistMode,
|
|
3
3
|
VideoConfiguration,
|
|
4
4
|
VideoMedia,
|
|
5
5
|
VideoSubtitleConfiguration,
|
|
6
6
|
VideoSubtitleTrack,
|
|
7
7
|
)
|
|
8
|
-
from .video import Video
|
|
8
|
+
from flet_video.video import Video
|
|
9
9
|
|
|
10
10
|
__all__ = [
|
|
11
11
|
"PlaylistMode",
|
flet_video/video.py
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import asyncio
|
|
2
1
|
from dataclasses import field
|
|
3
2
|
from typing import Optional
|
|
4
3
|
|
|
5
4
|
import flet as ft
|
|
6
5
|
|
|
7
|
-
from .types import (
|
|
6
|
+
from flet_video.types import (
|
|
8
7
|
PlaylistMode,
|
|
9
8
|
VideoConfiguration,
|
|
10
9
|
VideoMedia,
|
|
@@ -179,85 +178,44 @@ class Video(ft.ConstrainedControl):
|
|
|
179
178
|
f"volume must be between 0 and 100 inclusive, got {self.volume}"
|
|
180
179
|
)
|
|
181
180
|
|
|
182
|
-
def play(self):
|
|
181
|
+
async def play(self):
|
|
183
182
|
"""Starts playing the video."""
|
|
184
|
-
|
|
183
|
+
await self._invoke_method("play")
|
|
185
184
|
|
|
186
|
-
def
|
|
187
|
-
"""Starts playing the video."""
|
|
188
|
-
return self._invoke_method_async("play")
|
|
189
|
-
|
|
190
|
-
def pause(self):
|
|
191
|
-
"""Pauses the video player."""
|
|
192
|
-
asyncio.create_task(self.pause_async())
|
|
193
|
-
|
|
194
|
-
def pause_async(self):
|
|
185
|
+
async def pause(self):
|
|
195
186
|
"""Pauses the video player."""
|
|
196
|
-
|
|
187
|
+
await self._invoke_method("pause")
|
|
197
188
|
|
|
198
|
-
def play_or_pause(self):
|
|
189
|
+
async def play_or_pause(self):
|
|
199
190
|
"""
|
|
200
191
|
Cycles between play and pause states of the video player,
|
|
201
192
|
i.e., plays if paused and pauses if playing.
|
|
202
193
|
"""
|
|
203
|
-
|
|
194
|
+
await self._invoke_method("play_or_pause")
|
|
204
195
|
|
|
205
|
-
def
|
|
206
|
-
"""
|
|
207
|
-
Cycles between play and pause states of the video player,
|
|
208
|
-
i.e., plays if paused and pauses if playing.
|
|
209
|
-
"""
|
|
210
|
-
return self._invoke_method_async("play_or_pause")
|
|
211
|
-
|
|
212
|
-
def stop(self):
|
|
213
|
-
"""Stops the video player."""
|
|
214
|
-
asyncio.create_task(self.stop_async())
|
|
215
|
-
|
|
216
|
-
def stop_async(self):
|
|
196
|
+
async def stop(self):
|
|
217
197
|
"""Stops the video player."""
|
|
218
|
-
|
|
198
|
+
await self._invoke_method("stop")
|
|
219
199
|
|
|
220
|
-
def next(self):
|
|
200
|
+
async def next(self):
|
|
221
201
|
"""Jumps to the next `VideoMedia` in the [`playlist`][..]."""
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
def next_async(self):
|
|
225
|
-
"""Jumps to the next `VideoMedia` in the [`playlist`][..]."""
|
|
226
|
-
return self._invoke_method_async("next")
|
|
227
|
-
|
|
228
|
-
def previous(self):
|
|
229
|
-
"""Jumps to the previous `VideoMedia` in the [`playlist`][..]."""
|
|
230
|
-
asyncio.create_task(self.previous_async())
|
|
202
|
+
await self._invoke_method("next")
|
|
231
203
|
|
|
232
|
-
def
|
|
204
|
+
async def previous(self):
|
|
233
205
|
"""Jumps to the previous `VideoMedia` in the [`playlist`][..]."""
|
|
234
|
-
|
|
206
|
+
await self._invoke_method("previous")
|
|
235
207
|
|
|
236
|
-
def seek(self, position: ft.DurationValue):
|
|
208
|
+
async def seek(self, position: ft.DurationValue):
|
|
237
209
|
"""
|
|
238
210
|
Seeks the currently playing `VideoMedia` from the
|
|
239
211
|
[`playlist`][..] at the specified `position`.
|
|
240
212
|
"""
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
def seek_async(self, position: ft.DurationValue):
|
|
244
|
-
"""
|
|
245
|
-
Seeks the currently playing `VideoMedia` from the
|
|
246
|
-
[`playlist`][..] at the specified `position`.
|
|
247
|
-
"""
|
|
248
|
-
return self._invoke_method_async(
|
|
213
|
+
await self._invoke_method(
|
|
249
214
|
"seek",
|
|
250
215
|
{"position": position},
|
|
251
216
|
)
|
|
252
217
|
|
|
253
|
-
def jump_to(self, media_index: int):
|
|
254
|
-
"""
|
|
255
|
-
Jumps to the `VideoMedia` at the specified `media_index`
|
|
256
|
-
in the [`playlist`][..].
|
|
257
|
-
"""
|
|
258
|
-
asyncio.create_task(self.jump_to_async(media_index))
|
|
259
|
-
|
|
260
|
-
async def jump_to_async(self, media_index: int):
|
|
218
|
+
async def jump_to(self, media_index: int):
|
|
261
219
|
"""
|
|
262
220
|
Jumps to the `VideoMedia` at the specified `media_index`
|
|
263
221
|
in the [`playlist`][..].
|
|
@@ -266,62 +224,54 @@ class Video(ft.ConstrainedControl):
|
|
|
266
224
|
if media_index < 0:
|
|
267
225
|
# dart doesn't support negative indexes
|
|
268
226
|
media_index = len(self.playlist) + media_index
|
|
269
|
-
await self.
|
|
227
|
+
await self._invoke_method(
|
|
270
228
|
method_name="jump_to",
|
|
271
229
|
arguments={"media_index": media_index},
|
|
272
230
|
)
|
|
273
231
|
|
|
274
|
-
def playlist_add(self, media: VideoMedia):
|
|
275
|
-
"""Appends/Adds the provided `media` to the `playlist`."""
|
|
276
|
-
asyncio.create_task(self.playlist_add_async(media))
|
|
277
|
-
|
|
278
|
-
async def playlist_add_async(self, media: VideoMedia):
|
|
232
|
+
async def playlist_add(self, media: VideoMedia):
|
|
279
233
|
"""Appends/Adds the provided `media` to the `playlist`."""
|
|
280
234
|
assert media.resource, "media has no resource"
|
|
281
|
-
await self.
|
|
235
|
+
await self._invoke_method(
|
|
282
236
|
method_name="playlist_add",
|
|
283
237
|
arguments={"media": media},
|
|
284
238
|
)
|
|
285
239
|
self.playlist.append(media)
|
|
286
240
|
|
|
287
|
-
def playlist_remove(self, media_index: int):
|
|
288
|
-
"""Removes the provided `media` from the `playlist`."""
|
|
289
|
-
asyncio.create_task(self.playlist_remove_async(media_index))
|
|
290
|
-
|
|
291
|
-
async def playlist_remove_async(self, media_index: int):
|
|
241
|
+
async def playlist_remove(self, media_index: int):
|
|
292
242
|
"""Removes the provided `media` from the `playlist`."""
|
|
293
243
|
assert self.playlist[media_index], "index out of range"
|
|
294
|
-
await self.
|
|
244
|
+
await self._invoke_method(
|
|
295
245
|
method_name="playlist_remove",
|
|
296
246
|
arguments={"media_index": media_index},
|
|
297
247
|
)
|
|
298
248
|
self.playlist.pop(media_index)
|
|
299
249
|
|
|
300
|
-
async def
|
|
250
|
+
async def is_playing(self) -> bool:
|
|
301
251
|
"""
|
|
302
252
|
Returns:
|
|
303
253
|
`True` if the video player is currently playing, `False` otherwise.
|
|
304
254
|
"""
|
|
305
|
-
return await self.
|
|
255
|
+
return await self._invoke_method("is_playing")
|
|
306
256
|
|
|
307
|
-
async def
|
|
257
|
+
async def is_completed(self) -> bool:
|
|
308
258
|
"""
|
|
309
259
|
Returns:
|
|
310
260
|
`True` if video player has reached the end of
|
|
311
261
|
the currently playing media, `False` otherwise.
|
|
312
262
|
"""
|
|
313
|
-
return await self.
|
|
263
|
+
return await self._invoke_method("is_completed")
|
|
314
264
|
|
|
315
|
-
async def
|
|
265
|
+
async def get_duration(self) -> ft.Duration:
|
|
316
266
|
"""
|
|
317
267
|
Returns:
|
|
318
268
|
The duration of the currently playing media.
|
|
319
269
|
"""
|
|
320
|
-
return await self.
|
|
270
|
+
return await self._invoke_method("get_duration")
|
|
321
271
|
|
|
322
|
-
async def
|
|
272
|
+
async def get_current_position(self) -> ft.Duration:
|
|
323
273
|
"""
|
|
324
274
|
Returns:
|
|
325
275
|
The current position of the currently playing media.
|
|
326
276
|
"""
|
|
327
|
-
return await self.
|
|
277
|
+
return await self._invoke_method("get_current_position")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-video
|
|
3
|
-
Version: 0.2.0.
|
|
3
|
+
Version: 0.2.0.dev89
|
|
4
4
|
Summary: A cross-platform video player for 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-video` package and add it to your project dependencies:
|
|
47
49
|
|
|
@@ -61,6 +63,6 @@ To install the `flet-video` package and add it to your project dependencies:
|
|
|
61
63
|
poetry add flet-video
|
|
62
64
|
```
|
|
63
65
|
|
|
64
|
-
|
|
66
|
+
### Examples
|
|
65
67
|
|
|
66
|
-
For examples, see [
|
|
68
|
+
For examples, see [these](./examples).
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
flet_video/__init__.py,sha256=
|
|
1
|
+
flet_video/__init__.py,sha256=jaNQsiSt765db8odKBLiMLRrgk-YNuSK8eznMk2_1eA,334
|
|
2
2
|
flet_video/types.py,sha256=QO80nyg2DMSxWNxLxTpT256vB1uZQ5dELCnsc9XEYSg,4527
|
|
3
|
-
flet_video/video.py,sha256=
|
|
4
|
-
flet_video-0.2.0.
|
|
3
|
+
flet_video/video.py,sha256=cvwNiI7nbqHmu_zsl3IW5Zm_nU_j2yUy2gH5fJB6Wc0,8099
|
|
4
|
+
flet_video-0.2.0.dev89.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
5
5
|
flutter/flet_video/CHANGELOG.md,sha256=FJ0SxmqH1T_rUMLagUr_PqoHRQBloR4octPNKKz4TJ8,54
|
|
6
6
|
flutter/flet_video/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
7
7
|
flutter/flet_video/README.md,sha256=BNJ7_bUq43JAu1VTnjdOnUaV-vDjKDc_QbUvGYbnfbQ,60
|
|
8
8
|
flutter/flet_video/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
|
|
9
|
-
flutter/flet_video/pubspec.lock,sha256=
|
|
9
|
+
flutter/flet_video/pubspec.lock,sha256=NonFBvRLK7IFcqMKjgOH00qlu4Pea3WlI5-x2IEKBoc,29411
|
|
10
10
|
flutter/flet_video/pubspec.yaml,sha256=EHyKLQbpBFu40CaWcFdEnl10OJ0aZ_cfOeZffP6P-mA,564
|
|
11
11
|
flutter/flet_video/lib/flet_video.dart,sha256=x-KG1v-Qb_AiSyH9Y2Jt9PIYPxl_mQjXeIg_BDEQ0iQ,65
|
|
12
12
|
flutter/flet_video/lib/src/extension.dart,sha256=8a6XcgY0KD4HQVkSVx0_6O8WcCqUeVub0_ihq4WW7S4,477
|
|
@@ -14,7 +14,7 @@ flutter/flet_video/lib/src/video.dart,sha256=Wlh61Rldan9hPmSxOcOVNPUoN7b8ii5ouv3
|
|
|
14
14
|
flutter/flet_video/lib/src/utils/file_utils_io.dart,sha256=7AgfFYmc2hWT3Hqra29zyl4H0y43L5ZnqvFoGuMPCpM,276
|
|
15
15
|
flutter/flet_video/lib/src/utils/file_utils_web.dart,sha256=TeGP-wSeoe39G_EJO2JFhgw6lJXmDXBNW0i-YUgxlaw,138
|
|
16
16
|
flutter/flet_video/lib/src/utils/video.dart,sha256=ictwd-7_8i7KmwGftHAhFFF_w2Y8vuXeeY4-bkfEhEk,4258
|
|
17
|
-
flet_video-0.2.0.
|
|
18
|
-
flet_video-0.2.0.
|
|
19
|
-
flet_video-0.2.0.
|
|
20
|
-
flet_video-0.2.0.
|
|
17
|
+
flet_video-0.2.0.dev89.dist-info/METADATA,sha256=WLpudtAGMEDTH0EPIxqpzu_orBh5kN726lF5ZSDBuPI,1924
|
|
18
|
+
flet_video-0.2.0.dev89.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
flet_video-0.2.0.dev89.dist-info/top_level.txt,sha256=7omjcyZHBn3gldah0wrmAlkR9Vc1vmtSlhUVZcPg2o0,19
|
|
20
|
+
flet_video-0.2.0.dev89.dist-info/RECORD,,
|
flutter/flet_video/pubspec.lock
CHANGED
|
@@ -21,10 +21,10 @@ packages:
|
|
|
21
21
|
dependency: transitive
|
|
22
22
|
description:
|
|
23
23
|
name: async
|
|
24
|
-
sha256:
|
|
24
|
+
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
|
|
25
25
|
url: "https://pub.dev"
|
|
26
26
|
source: hosted
|
|
27
|
-
version: "2.
|
|
27
|
+
version: "2.13.0"
|
|
28
28
|
boolean_selector:
|
|
29
29
|
dependency: transitive
|
|
30
30
|
description:
|
|
@@ -109,10 +109,10 @@ packages:
|
|
|
109
109
|
dependency: transitive
|
|
110
110
|
description:
|
|
111
111
|
name: fake_async
|
|
112
|
-
sha256: "
|
|
112
|
+
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
|
|
113
113
|
url: "https://pub.dev"
|
|
114
114
|
source: hosted
|
|
115
|
-
version: "1.3.
|
|
115
|
+
version: "1.3.3"
|
|
116
116
|
ffi:
|
|
117
117
|
dependency: transitive
|
|
118
118
|
description:
|
|
@@ -133,10 +133,10 @@ packages:
|
|
|
133
133
|
dependency: transitive
|
|
134
134
|
description:
|
|
135
135
|
name: file_picker
|
|
136
|
-
sha256:
|
|
136
|
+
sha256: ef7d2a085c1b1d69d17b6842d0734aad90156de08df6bd3c12496d0bd6ddf8e2
|
|
137
137
|
url: "https://pub.dev"
|
|
138
138
|
source: hosted
|
|
139
|
-
version: "10.
|
|
139
|
+
version: "10.3.1"
|
|
140
140
|
fixnum:
|
|
141
141
|
dependency: transitive
|
|
142
142
|
description:
|
|
@@ -150,7 +150,7 @@ packages:
|
|
|
150
150
|
description:
|
|
151
151
|
path: "packages/flet"
|
|
152
152
|
ref: main
|
|
153
|
-
resolved-ref:
|
|
153
|
+
resolved-ref: "4ea9558543657d31dba3b11d6017beed2e16d447"
|
|
154
154
|
url: "https://github.com/flet-dev/flet.git"
|
|
155
155
|
source: git
|
|
156
156
|
version: "0.70.0"
|
|
@@ -192,10 +192,10 @@ packages:
|
|
|
192
192
|
dependency: transitive
|
|
193
193
|
description:
|
|
194
194
|
name: flutter_plugin_android_lifecycle
|
|
195
|
-
sha256:
|
|
195
|
+
sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
|
|
196
196
|
url: "https://pub.dev"
|
|
197
197
|
source: hosted
|
|
198
|
-
version: "2.0.
|
|
198
|
+
version: "2.0.29"
|
|
199
199
|
flutter_svg:
|
|
200
200
|
dependency: transitive
|
|
201
201
|
description:
|
|
@@ -250,10 +250,10 @@ packages:
|
|
|
250
250
|
dependency: transitive
|
|
251
251
|
description:
|
|
252
252
|
name: intl
|
|
253
|
-
sha256:
|
|
253
|
+
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
|
|
254
254
|
url: "https://pub.dev"
|
|
255
255
|
source: hosted
|
|
256
|
-
version: "0.
|
|
256
|
+
version: "0.20.2"
|
|
257
257
|
json_annotation:
|
|
258
258
|
dependency: transitive
|
|
259
259
|
description:
|
|
@@ -266,10 +266,10 @@ packages:
|
|
|
266
266
|
dependency: transitive
|
|
267
267
|
description:
|
|
268
268
|
name: leak_tracker
|
|
269
|
-
sha256:
|
|
269
|
+
sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0"
|
|
270
270
|
url: "https://pub.dev"
|
|
271
271
|
source: hosted
|
|
272
|
-
version: "10.0.
|
|
272
|
+
version: "10.0.9"
|
|
273
273
|
leak_tracker_flutter_testing:
|
|
274
274
|
dependency: transitive
|
|
275
275
|
description:
|
|
@@ -418,18 +418,18 @@ packages:
|
|
|
418
418
|
dependency: transitive
|
|
419
419
|
description:
|
|
420
420
|
name: package_info_plus
|
|
421
|
-
sha256: "
|
|
421
|
+
sha256: "16eee997588c60225bda0488b6dcfac69280a6b7a3cf02c741895dd370a02968"
|
|
422
422
|
url: "https://pub.dev"
|
|
423
423
|
source: hosted
|
|
424
|
-
version: "8.3.
|
|
424
|
+
version: "8.3.1"
|
|
425
425
|
package_info_plus_platform_interface:
|
|
426
426
|
dependency: transitive
|
|
427
427
|
description:
|
|
428
428
|
name: package_info_plus_platform_interface
|
|
429
|
-
sha256: "
|
|
429
|
+
sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086"
|
|
430
430
|
url: "https://pub.dev"
|
|
431
431
|
source: hosted
|
|
432
|
-
version: "3.2.
|
|
432
|
+
version: "3.2.1"
|
|
433
433
|
path:
|
|
434
434
|
dependency: transitive
|
|
435
435
|
description:
|
|
@@ -466,10 +466,10 @@ packages:
|
|
|
466
466
|
dependency: transitive
|
|
467
467
|
description:
|
|
468
468
|
name: path_provider_foundation
|
|
469
|
-
sha256: "
|
|
469
|
+
sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
|
|
470
470
|
url: "https://pub.dev"
|
|
471
471
|
source: hosted
|
|
472
|
-
version: "2.4.
|
|
472
|
+
version: "2.4.2"
|
|
473
473
|
path_provider_linux:
|
|
474
474
|
dependency: transitive
|
|
475
475
|
description:
|
|
@@ -598,14 +598,22 @@ packages:
|
|
|
598
598
|
url: "https://pub.dev"
|
|
599
599
|
source: hosted
|
|
600
600
|
version: "0.2.0"
|
|
601
|
+
screenshot:
|
|
602
|
+
dependency: transitive
|
|
603
|
+
description:
|
|
604
|
+
name: screenshot
|
|
605
|
+
sha256: "63817697a7835e6ce82add4228e15d233b74d42975c143ad8cfe07009fab866b"
|
|
606
|
+
url: "https://pub.dev"
|
|
607
|
+
source: hosted
|
|
608
|
+
version: "3.0.0"
|
|
601
609
|
sensors_plus:
|
|
602
610
|
dependency: transitive
|
|
603
611
|
description:
|
|
604
612
|
name: sensors_plus
|
|
605
|
-
sha256: "
|
|
613
|
+
sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
|
|
606
614
|
url: "https://pub.dev"
|
|
607
615
|
source: hosted
|
|
608
|
-
version: "6.1.
|
|
616
|
+
version: "6.1.2"
|
|
609
617
|
sensors_plus_platform_interface:
|
|
610
618
|
dependency: transitive
|
|
611
619
|
description:
|
|
@@ -626,10 +634,10 @@ packages:
|
|
|
626
634
|
dependency: transitive
|
|
627
635
|
description:
|
|
628
636
|
name: shared_preferences_android
|
|
629
|
-
sha256: "
|
|
637
|
+
sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
|
|
630
638
|
url: "https://pub.dev"
|
|
631
639
|
source: hosted
|
|
632
|
-
version: "2.4.
|
|
640
|
+
version: "2.4.11"
|
|
633
641
|
shared_preferences_foundation:
|
|
634
642
|
dependency: transitive
|
|
635
643
|
description:
|
|
@@ -719,10 +727,10 @@ packages:
|
|
|
719
727
|
dependency: transitive
|
|
720
728
|
description:
|
|
721
729
|
name: synchronized
|
|
722
|
-
sha256:
|
|
730
|
+
sha256: c254ade258ec8282947a0acbbc90b9575b4f19673533ee46f2f6e9b3aeefd7c0
|
|
723
731
|
url: "https://pub.dev"
|
|
724
732
|
source: hosted
|
|
725
|
-
version: "3.
|
|
733
|
+
version: "3.4.0"
|
|
726
734
|
term_glyph:
|
|
727
735
|
dependency: transitive
|
|
728
736
|
description:
|
|
@@ -775,18 +783,18 @@ packages:
|
|
|
775
783
|
dependency: transitive
|
|
776
784
|
description:
|
|
777
785
|
name: url_launcher_android
|
|
778
|
-
sha256: "
|
|
786
|
+
sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
|
|
779
787
|
url: "https://pub.dev"
|
|
780
788
|
source: hosted
|
|
781
|
-
version: "6.3.
|
|
789
|
+
version: "6.3.17"
|
|
782
790
|
url_launcher_ios:
|
|
783
791
|
dependency: transitive
|
|
784
792
|
description:
|
|
785
793
|
name: url_launcher_ios
|
|
786
|
-
sha256:
|
|
794
|
+
sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
|
|
787
795
|
url: "https://pub.dev"
|
|
788
796
|
source: hosted
|
|
789
|
-
version: "6.3.
|
|
797
|
+
version: "6.3.4"
|
|
790
798
|
url_launcher_linux:
|
|
791
799
|
dependency: transitive
|
|
792
800
|
description:
|
|
@@ -799,10 +807,10 @@ packages:
|
|
|
799
807
|
dependency: transitive
|
|
800
808
|
description:
|
|
801
809
|
name: url_launcher_macos
|
|
802
|
-
sha256:
|
|
810
|
+
sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
|
|
803
811
|
url: "https://pub.dev"
|
|
804
812
|
source: hosted
|
|
805
|
-
version: "3.2.
|
|
813
|
+
version: "3.2.3"
|
|
806
814
|
url_launcher_platform_interface:
|
|
807
815
|
dependency: transitive
|
|
808
816
|
description:
|
|
@@ -855,10 +863,10 @@ packages:
|
|
|
855
863
|
dependency: transitive
|
|
856
864
|
description:
|
|
857
865
|
name: vector_graphics_compiler
|
|
858
|
-
sha256:
|
|
866
|
+
sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
|
|
859
867
|
url: "https://pub.dev"
|
|
860
868
|
source: hosted
|
|
861
|
-
version: "1.1.
|
|
869
|
+
version: "1.1.18"
|
|
862
870
|
vector_math:
|
|
863
871
|
dependency: transitive
|
|
864
872
|
description:
|
|
@@ -871,10 +879,10 @@ packages:
|
|
|
871
879
|
dependency: transitive
|
|
872
880
|
description:
|
|
873
881
|
name: vm_service
|
|
874
|
-
sha256:
|
|
882
|
+
sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
|
|
875
883
|
url: "https://pub.dev"
|
|
876
884
|
source: hosted
|
|
877
|
-
version: "
|
|
885
|
+
version: "15.0.0"
|
|
878
886
|
volume_controller:
|
|
879
887
|
dependency: transitive
|
|
880
888
|
description:
|
|
@@ -927,10 +935,10 @@ packages:
|
|
|
927
935
|
dependency: transitive
|
|
928
936
|
description:
|
|
929
937
|
name: win32
|
|
930
|
-
sha256: "
|
|
938
|
+
sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
|
|
931
939
|
url: "https://pub.dev"
|
|
932
940
|
source: hosted
|
|
933
|
-
version: "5.
|
|
941
|
+
version: "5.14.0"
|
|
934
942
|
win32_registry:
|
|
935
943
|
dependency: transitive
|
|
936
944
|
description:
|
|
@@ -972,5 +980,5 @@ packages:
|
|
|
972
980
|
source: hosted
|
|
973
981
|
version: "6.5.0"
|
|
974
982
|
sdks:
|
|
975
|
-
dart: ">=3.
|
|
983
|
+
dart: ">=3.8.0 <4.0.0"
|
|
976
984
|
flutter: ">=3.29.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|