flet-audio 0.2.0.dev58__tar.gz → 0.2.0.dev504__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-audio might be problematic. Click here for more details.
- {flet_audio-0.2.0.dev58/src/flet_audio.egg-info → flet_audio-0.2.0.dev504}/PKG-INFO +6 -4
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/README.md +5 -3
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/pyproject.toml +5 -1
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flet_audio/__init__.py +2 -2
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flet_audio/audio.py +19 -97
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flet_audio/types.py +3 -3
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504/src/flet_audio.egg-info}/PKG-INFO +6 -4
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/pubspec.lock +60 -44
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/LICENSE +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/setup.cfg +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flet_audio.egg-info/SOURCES.txt +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flet_audio.egg-info/dependency_links.txt +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flet_audio.egg-info/requires.txt +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flet_audio.egg-info/top_level.txt +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/CHANGELOG.md +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/LICENSE +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/README.md +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/analysis_options.yaml +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/lib/flet_audio.dart +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/lib/src/audio.dart +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/lib/src/extension.dart +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/lib/src/utils/audio.dart +0 -0
- {flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/pubspec.yaml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-audio
|
|
3
|
-
Version: 0.2.0.
|
|
3
|
+
Version: 0.2.0.dev504
|
|
4
4
|
Summary: Eases audio integration and playback 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-audio` package and add it to your project dependencies:
|
|
47
49
|
|
|
@@ -61,6 +63,6 @@ To install the `flet-audio` package and add it to your project dependencies:
|
|
|
61
63
|
poetry add flet-audio
|
|
62
64
|
```
|
|
63
65
|
|
|
64
|
-
|
|
66
|
+
### Examples
|
|
65
67
|
|
|
66
|
-
For examples, see [
|
|
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-audio` package and add it to your project dependencies:
|
|
31
33
|
|
|
@@ -45,6 +47,6 @@ To install the `flet-audio` package and add it to your project dependencies:
|
|
|
45
47
|
poetry add flet-audio
|
|
46
48
|
```
|
|
47
49
|
|
|
48
|
-
|
|
50
|
+
### Examples
|
|
49
51
|
|
|
50
|
-
For examples, see [
|
|
52
|
+
For examples, see [these](./examples).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "flet-audio"
|
|
3
|
-
version = "0.2.0.
|
|
3
|
+
version = "0.2.0.dev504"
|
|
4
4
|
description = "Eases audio integration and playback in Flet apps."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Flet contributors", email = "hello@flet.dev" }]
|
|
@@ -52,6 +52,7 @@ docs = [
|
|
|
52
52
|
"markdown-exec[ansi] >=1.11.0",
|
|
53
53
|
"pydocstyle >=6.3.0",
|
|
54
54
|
"linkcheckmd >=1.4.0",
|
|
55
|
+
"mkdocs-external-images",
|
|
55
56
|
{ include-group = 'docs-coverage' },
|
|
56
57
|
]
|
|
57
58
|
all = [
|
|
@@ -59,6 +60,9 @@ all = [
|
|
|
59
60
|
{ include-group = 'docs' },
|
|
60
61
|
]
|
|
61
62
|
|
|
63
|
+
[tool.uv.sources]
|
|
64
|
+
mkdocs-external-images = { git = "https://github.com/flet-dev/mkdocs-external-images", tag = "v0.2.0" }
|
|
65
|
+
|
|
62
66
|
[build-system]
|
|
63
67
|
requires = ["setuptools"]
|
|
64
68
|
build-backend = "setuptools.build_meta"
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import asyncio
|
|
2
1
|
from typing import Optional
|
|
3
2
|
|
|
4
3
|
import flet as ft
|
|
5
4
|
|
|
6
|
-
from .types import (
|
|
5
|
+
from flet_audio.types import (
|
|
7
6
|
AudioDurationChangeEvent,
|
|
8
7
|
AudioPositionChangeEvent,
|
|
9
8
|
AudioStateChangeEvent,
|
|
@@ -42,8 +41,8 @@ class Audio(ft.Service):
|
|
|
42
41
|
Defines the contents of audio file encoded in base-64 format.
|
|
43
42
|
|
|
44
43
|
Note:
|
|
45
|
-
- At least one of [`src`][flet_audio.Audio.src] or `src_base64` must be
|
|
46
|
-
with `src_base64` having priority if both are provided.
|
|
44
|
+
- At least one of [`src`][flet_audio.Audio.src] or `src_base64` must be
|
|
45
|
+
provided, with `src_base64` having priority if both are provided.
|
|
47
46
|
- [Here](https://github.com/bluefireteam/audioplayers/blob/main/troubleshooting.md#supported-formats--encodings)
|
|
48
47
|
is a list of supported audio formats.
|
|
49
48
|
"""
|
|
@@ -124,9 +123,7 @@ class Audio(ft.Service):
|
|
|
124
123
|
super().before_update()
|
|
125
124
|
assert self.src or self.src_base64, "either src or src_base64 must be provided"
|
|
126
125
|
|
|
127
|
-
async def
|
|
128
|
-
self, position: ft.DurationValue = ft.Duration(), timeout: Optional[float] = 10
|
|
129
|
-
):
|
|
126
|
+
async def play(self, position: ft.DurationValue = 0, timeout: Optional[float] = 10):
|
|
130
127
|
"""
|
|
131
128
|
Starts playing audio from the specified `position`.
|
|
132
129
|
|
|
@@ -137,66 +134,22 @@ class Audio(ft.Service):
|
|
|
137
134
|
Raises:
|
|
138
135
|
TimeoutError: If the request times out.
|
|
139
136
|
"""
|
|
140
|
-
await self.
|
|
137
|
+
await self._invoke_method(
|
|
141
138
|
method_name="play",
|
|
142
139
|
arguments={"position": position},
|
|
143
140
|
timeout=timeout,
|
|
144
141
|
)
|
|
145
142
|
|
|
146
|
-
def
|
|
147
|
-
self, position: ft.DurationValue = ft.Duration(), timeout: Optional[float] = 10
|
|
148
|
-
):
|
|
149
|
-
"""
|
|
150
|
-
Starts playing audio from the specified `position`.
|
|
151
|
-
|
|
152
|
-
Args:
|
|
153
|
-
position: The position to start playback from.
|
|
154
|
-
timeout: The maximum amount of time (in seconds) to wait for a response.
|
|
155
|
-
|
|
156
|
-
Raises:
|
|
157
|
-
TimeoutError: If the request times out.
|
|
158
|
-
"""
|
|
159
|
-
asyncio.create_task(self.play_async(position, timeout=timeout))
|
|
160
|
-
|
|
161
|
-
async def pause_async(self, timeout: Optional[float] = 10):
|
|
162
|
-
"""
|
|
163
|
-
Pauses the audio that is currently playing.
|
|
164
|
-
|
|
165
|
-
If you call [`resume()`][flet_audio.Audio.resume] or
|
|
166
|
-
[`resume_async()`][flet_audio.Audio.resume_async] later,
|
|
167
|
-
the audio will resume from the point that it has been paused.
|
|
168
|
-
"""
|
|
169
|
-
await self._invoke_method_async("pause", timeout=timeout)
|
|
170
|
-
|
|
171
|
-
def pause(self, timeout: Optional[float] = 10):
|
|
143
|
+
async def pause(self, timeout: Optional[float] = 10):
|
|
172
144
|
"""
|
|
173
145
|
Pauses the audio that is currently playing.
|
|
174
146
|
|
|
175
|
-
If you call [`resume()`][flet_audio.Audio.resume]
|
|
176
|
-
[`resume_async()`][flet_audio.Audio.resume_async] later,
|
|
147
|
+
If you call [`resume()`][flet_audio.Audio.resume] later,
|
|
177
148
|
the audio will resume from the point that it has been paused.
|
|
178
|
-
|
|
179
|
-
Args:
|
|
180
|
-
timeout: The maximum amount of time (in seconds) to wait for a response.
|
|
181
|
-
|
|
182
|
-
Raises:
|
|
183
|
-
TimeoutError: If the request times out.
|
|
184
|
-
"""
|
|
185
|
-
asyncio.create_task(self.pause_async(timeout=timeout))
|
|
186
|
-
|
|
187
|
-
async def resume_async(self, timeout: Optional[float] = 10):
|
|
188
|
-
"""
|
|
189
|
-
Resumes the audio that has been paused or stopped.
|
|
190
|
-
|
|
191
|
-
Args:
|
|
192
|
-
timeout: The maximum amount of time (in seconds) to wait for a response.
|
|
193
|
-
|
|
194
|
-
Raises:
|
|
195
|
-
TimeoutError: If the request times out.
|
|
196
149
|
"""
|
|
197
|
-
await self.
|
|
150
|
+
await self._invoke_method("pause", timeout=timeout)
|
|
198
151
|
|
|
199
|
-
def resume(self, timeout: Optional[float] = 10):
|
|
152
|
+
async def resume(self, timeout: Optional[float] = 10):
|
|
200
153
|
"""
|
|
201
154
|
Resumes the audio that has been paused or stopped.
|
|
202
155
|
|
|
@@ -206,29 +159,13 @@ class Audio(ft.Service):
|
|
|
206
159
|
Raises:
|
|
207
160
|
TimeoutError: If the request times out.
|
|
208
161
|
"""
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
async def release_async(self, timeout: Optional[float] = 10):
|
|
212
|
-
"""
|
|
213
|
-
Releases the resources associated with this media player.
|
|
214
|
-
These are going to be fetched or buffered again as soon as
|
|
215
|
-
you change the source or call [`resume()`][flet_audio.Audio.resume] or
|
|
216
|
-
[`resume_async()`][flet_audio.Audio.resume_async].
|
|
217
|
-
|
|
218
|
-
Args:
|
|
219
|
-
timeout: The maximum amount of time (in seconds) to wait for a response.
|
|
220
|
-
|
|
221
|
-
Raises:
|
|
222
|
-
TimeoutError: If the request times out.
|
|
223
|
-
"""
|
|
224
|
-
await self._invoke_method_async("release", timeout=timeout)
|
|
162
|
+
await self._invoke_method("resume", timeout=timeout)
|
|
225
163
|
|
|
226
|
-
def release(self, timeout: Optional[float] = 10):
|
|
164
|
+
async def release(self, timeout: Optional[float] = 10):
|
|
227
165
|
"""
|
|
228
166
|
Releases the resources associated with this media player.
|
|
229
167
|
These are going to be fetched or buffered again as soon as
|
|
230
|
-
you change the source or call [`resume()`][flet_audio.Audio.resume]
|
|
231
|
-
[`resume_async()`][flet_audio.Audio.resume_async].
|
|
168
|
+
you change the source or call [`resume()`][flet_audio.Audio.resume].
|
|
232
169
|
|
|
233
170
|
Args:
|
|
234
171
|
timeout: The maximum amount of time (in seconds) to wait for a response.
|
|
@@ -236,11 +173,9 @@ class Audio(ft.Service):
|
|
|
236
173
|
Raises:
|
|
237
174
|
TimeoutError: If the request times out.
|
|
238
175
|
"""
|
|
239
|
-
|
|
176
|
+
await self._invoke_method("release", timeout=timeout)
|
|
240
177
|
|
|
241
|
-
async def
|
|
242
|
-
self, position: ft.DurationValue, timeout: Optional[float] = 10
|
|
243
|
-
):
|
|
178
|
+
async def seek(self, position: ft.DurationValue, timeout: Optional[float] = 10):
|
|
244
179
|
"""
|
|
245
180
|
Moves the cursor to the desired position.
|
|
246
181
|
|
|
@@ -251,26 +186,13 @@ class Audio(ft.Service):
|
|
|
251
186
|
Raises:
|
|
252
187
|
TimeoutError: If the request times out.
|
|
253
188
|
"""
|
|
254
|
-
await self.
|
|
189
|
+
await self._invoke_method(
|
|
255
190
|
method_name="seek",
|
|
256
191
|
arguments={"position": position},
|
|
257
192
|
timeout=timeout,
|
|
258
193
|
)
|
|
259
194
|
|
|
260
|
-
def
|
|
261
|
-
"""
|
|
262
|
-
Moves the cursor to the desired position.
|
|
263
|
-
|
|
264
|
-
Args:
|
|
265
|
-
position: The position to seek/move to.
|
|
266
|
-
timeout: The maximum amount of time (in seconds) to wait for a response.
|
|
267
|
-
|
|
268
|
-
Raises:
|
|
269
|
-
TimeoutError: If the request times out.
|
|
270
|
-
"""
|
|
271
|
-
asyncio.create_task(self.seek_async(position, timeout=timeout))
|
|
272
|
-
|
|
273
|
-
async def get_duration_async(
|
|
195
|
+
async def get_duration(
|
|
274
196
|
self, timeout: Optional[float] = 10
|
|
275
197
|
) -> Optional[ft.Duration]:
|
|
276
198
|
"""
|
|
@@ -288,12 +210,12 @@ class Audio(ft.Service):
|
|
|
288
210
|
Raises:
|
|
289
211
|
TimeoutError: If the request times out.
|
|
290
212
|
"""
|
|
291
|
-
return await self.
|
|
213
|
+
return await self._invoke_method(
|
|
292
214
|
method_name="get_duration",
|
|
293
215
|
timeout=timeout,
|
|
294
216
|
)
|
|
295
217
|
|
|
296
|
-
async def
|
|
218
|
+
async def get_current_position(
|
|
297
219
|
self, timeout: Optional[float] = 10
|
|
298
220
|
) -> Optional[ft.Duration]:
|
|
299
221
|
"""
|
|
@@ -305,7 +227,7 @@ class Audio(ft.Service):
|
|
|
305
227
|
Returns:
|
|
306
228
|
The current position of the audio playback.
|
|
307
229
|
"""
|
|
308
|
-
return await self.
|
|
230
|
+
return await self._invoke_method(
|
|
309
231
|
method_name="get_current_position",
|
|
310
232
|
timeout=timeout,
|
|
311
233
|
)
|
|
@@ -5,7 +5,7 @@ from typing import TYPE_CHECKING
|
|
|
5
5
|
import flet as ft
|
|
6
6
|
|
|
7
7
|
if TYPE_CHECKING:
|
|
8
|
-
from .audio import Audio # noqa
|
|
8
|
+
from flet_audio.audio import Audio # noqa
|
|
9
9
|
|
|
10
10
|
__all__ = [
|
|
11
11
|
"AudioDurationChangeEvent",
|
|
@@ -27,8 +27,8 @@ class ReleaseMode(Enum):
|
|
|
27
27
|
- On Android, the media player is quite resource-intensive, and this will
|
|
28
28
|
let it go. Data will be buffered again when needed (if it's a remote file,
|
|
29
29
|
it will be downloaded again).
|
|
30
|
-
- On iOS and macOS, works just like
|
|
31
|
-
method.
|
|
30
|
+
- On iOS and macOS, works just like
|
|
31
|
+
[`Audio.release()`][flet_audio.Audio.release] method.
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
34
|
LOOP = "loop"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-audio
|
|
3
|
-
Version: 0.2.0.
|
|
3
|
+
Version: 0.2.0.dev504
|
|
4
4
|
Summary: Eases audio integration and playback 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-audio` package and add it to your project dependencies:
|
|
47
49
|
|
|
@@ -61,6 +63,6 @@ To install the `flet-audio` package and add it to your project dependencies:
|
|
|
61
63
|
poetry add flet-audio
|
|
62
64
|
```
|
|
63
65
|
|
|
64
|
-
|
|
66
|
+
### Examples
|
|
65
67
|
|
|
66
|
-
For examples, see [
|
|
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
|
audioplayers:
|
|
21
21
|
dependency: "direct main"
|
|
22
22
|
description:
|
|
@@ -121,6 +121,14 @@ packages:
|
|
|
121
121
|
url: "https://pub.dev"
|
|
122
122
|
source: hosted
|
|
123
123
|
version: "3.0.6"
|
|
124
|
+
dbus:
|
|
125
|
+
dependency: transitive
|
|
126
|
+
description:
|
|
127
|
+
name: dbus
|
|
128
|
+
sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c"
|
|
129
|
+
url: "https://pub.dev"
|
|
130
|
+
source: hosted
|
|
131
|
+
version: "0.7.11"
|
|
124
132
|
device_info_plus:
|
|
125
133
|
dependency: transitive
|
|
126
134
|
description:
|
|
@@ -149,10 +157,10 @@ packages:
|
|
|
149
157
|
dependency: transitive
|
|
150
158
|
description:
|
|
151
159
|
name: fake_async
|
|
152
|
-
sha256: "
|
|
160
|
+
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
|
|
153
161
|
url: "https://pub.dev"
|
|
154
162
|
source: hosted
|
|
155
|
-
version: "1.3.
|
|
163
|
+
version: "1.3.3"
|
|
156
164
|
ffi:
|
|
157
165
|
dependency: transitive
|
|
158
166
|
description:
|
|
@@ -173,10 +181,10 @@ packages:
|
|
|
173
181
|
dependency: transitive
|
|
174
182
|
description:
|
|
175
183
|
name: file_picker
|
|
176
|
-
sha256:
|
|
184
|
+
sha256: e7e16c9d15c36330b94ca0e2ad8cb61f93cd5282d0158c09805aed13b5452f22
|
|
177
185
|
url: "https://pub.dev"
|
|
178
186
|
source: hosted
|
|
179
|
-
version: "10.2
|
|
187
|
+
version: "10.3.2"
|
|
180
188
|
fixnum:
|
|
181
189
|
dependency: transitive
|
|
182
190
|
description:
|
|
@@ -190,7 +198,7 @@ packages:
|
|
|
190
198
|
description:
|
|
191
199
|
path: "packages/flet"
|
|
192
200
|
ref: main
|
|
193
|
-
resolved-ref:
|
|
201
|
+
resolved-ref: "27cea68736639eff49200813838bba3b2bd4e2b0"
|
|
194
202
|
url: "https://github.com/flet-dev/flet.git"
|
|
195
203
|
source: git
|
|
196
204
|
version: "0.70.0"
|
|
@@ -232,10 +240,10 @@ packages:
|
|
|
232
240
|
dependency: transitive
|
|
233
241
|
description:
|
|
234
242
|
name: flutter_plugin_android_lifecycle
|
|
235
|
-
sha256:
|
|
243
|
+
sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
|
|
236
244
|
url: "https://pub.dev"
|
|
237
245
|
source: hosted
|
|
238
|
-
version: "2.0.
|
|
246
|
+
version: "2.0.29"
|
|
239
247
|
flutter_svg:
|
|
240
248
|
dependency: transitive
|
|
241
249
|
description:
|
|
@@ -282,10 +290,10 @@ packages:
|
|
|
282
290
|
dependency: transitive
|
|
283
291
|
description:
|
|
284
292
|
name: intl
|
|
285
|
-
sha256:
|
|
293
|
+
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
|
|
286
294
|
url: "https://pub.dev"
|
|
287
295
|
source: hosted
|
|
288
|
-
version: "0.
|
|
296
|
+
version: "0.20.2"
|
|
289
297
|
json_annotation:
|
|
290
298
|
dependency: transitive
|
|
291
299
|
description:
|
|
@@ -298,26 +306,26 @@ packages:
|
|
|
298
306
|
dependency: transitive
|
|
299
307
|
description:
|
|
300
308
|
name: leak_tracker
|
|
301
|
-
sha256:
|
|
309
|
+
sha256: "8dcda04c3fc16c14f48a7bb586d4be1f0d1572731b6d81d51772ef47c02081e0"
|
|
302
310
|
url: "https://pub.dev"
|
|
303
311
|
source: hosted
|
|
304
|
-
version: "
|
|
312
|
+
version: "11.0.1"
|
|
305
313
|
leak_tracker_flutter_testing:
|
|
306
314
|
dependency: transitive
|
|
307
315
|
description:
|
|
308
316
|
name: leak_tracker_flutter_testing
|
|
309
|
-
sha256:
|
|
317
|
+
sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
|
|
310
318
|
url: "https://pub.dev"
|
|
311
319
|
source: hosted
|
|
312
|
-
version: "3.0.
|
|
320
|
+
version: "3.0.10"
|
|
313
321
|
leak_tracker_testing:
|
|
314
322
|
dependency: transitive
|
|
315
323
|
description:
|
|
316
324
|
name: leak_tracker_testing
|
|
317
|
-
sha256: "
|
|
325
|
+
sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
|
|
318
326
|
url: "https://pub.dev"
|
|
319
327
|
source: hosted
|
|
320
|
-
version: "3.0.
|
|
328
|
+
version: "3.0.2"
|
|
321
329
|
lints:
|
|
322
330
|
dependency: transitive
|
|
323
331
|
description:
|
|
@@ -418,10 +426,10 @@ packages:
|
|
|
418
426
|
dependency: transitive
|
|
419
427
|
description:
|
|
420
428
|
name: path_provider_foundation
|
|
421
|
-
sha256: "
|
|
429
|
+
sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
|
|
422
430
|
url: "https://pub.dev"
|
|
423
431
|
source: hosted
|
|
424
|
-
version: "2.4.
|
|
432
|
+
version: "2.4.2"
|
|
425
433
|
path_provider_linux:
|
|
426
434
|
dependency: transitive
|
|
427
435
|
description:
|
|
@@ -474,10 +482,10 @@ packages:
|
|
|
474
482
|
dependency: transitive
|
|
475
483
|
description:
|
|
476
484
|
name: provider
|
|
477
|
-
sha256: "
|
|
485
|
+
sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272"
|
|
478
486
|
url: "https://pub.dev"
|
|
479
487
|
source: hosted
|
|
480
|
-
version: "6.1.5"
|
|
488
|
+
version: "6.1.5+1"
|
|
481
489
|
screen_retriever:
|
|
482
490
|
dependency: transitive
|
|
483
491
|
description:
|
|
@@ -518,14 +526,22 @@ packages:
|
|
|
518
526
|
url: "https://pub.dev"
|
|
519
527
|
source: hosted
|
|
520
528
|
version: "0.2.0"
|
|
529
|
+
screenshot:
|
|
530
|
+
dependency: transitive
|
|
531
|
+
description:
|
|
532
|
+
name: screenshot
|
|
533
|
+
sha256: "63817697a7835e6ce82add4228e15d233b74d42975c143ad8cfe07009fab866b"
|
|
534
|
+
url: "https://pub.dev"
|
|
535
|
+
source: hosted
|
|
536
|
+
version: "3.0.0"
|
|
521
537
|
sensors_plus:
|
|
522
538
|
dependency: transitive
|
|
523
539
|
description:
|
|
524
540
|
name: sensors_plus
|
|
525
|
-
sha256: "
|
|
541
|
+
sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
|
|
526
542
|
url: "https://pub.dev"
|
|
527
543
|
source: hosted
|
|
528
|
-
version: "6.1.
|
|
544
|
+
version: "6.1.2"
|
|
529
545
|
sensors_plus_platform_interface:
|
|
530
546
|
dependency: transitive
|
|
531
547
|
description:
|
|
@@ -546,10 +562,10 @@ packages:
|
|
|
546
562
|
dependency: transitive
|
|
547
563
|
description:
|
|
548
564
|
name: shared_preferences_android
|
|
549
|
-
sha256: "
|
|
565
|
+
sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
|
|
550
566
|
url: "https://pub.dev"
|
|
551
567
|
source: hosted
|
|
552
|
-
version: "2.4.
|
|
568
|
+
version: "2.4.11"
|
|
553
569
|
shared_preferences_foundation:
|
|
554
570
|
dependency: transitive
|
|
555
571
|
description:
|
|
@@ -639,10 +655,10 @@ packages:
|
|
|
639
655
|
dependency: transitive
|
|
640
656
|
description:
|
|
641
657
|
name: synchronized
|
|
642
|
-
sha256:
|
|
658
|
+
sha256: c254ade258ec8282947a0acbbc90b9575b4f19673533ee46f2f6e9b3aeefd7c0
|
|
643
659
|
url: "https://pub.dev"
|
|
644
660
|
source: hosted
|
|
645
|
-
version: "3.
|
|
661
|
+
version: "3.4.0"
|
|
646
662
|
term_glyph:
|
|
647
663
|
dependency: transitive
|
|
648
664
|
description:
|
|
@@ -655,10 +671,10 @@ packages:
|
|
|
655
671
|
dependency: transitive
|
|
656
672
|
description:
|
|
657
673
|
name: test_api
|
|
658
|
-
sha256:
|
|
674
|
+
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
|
|
659
675
|
url: "https://pub.dev"
|
|
660
676
|
source: hosted
|
|
661
|
-
version: "0.7.
|
|
677
|
+
version: "0.7.6"
|
|
662
678
|
typed_data:
|
|
663
679
|
dependency: transitive
|
|
664
680
|
description:
|
|
@@ -679,18 +695,18 @@ packages:
|
|
|
679
695
|
dependency: transitive
|
|
680
696
|
description:
|
|
681
697
|
name: url_launcher_android
|
|
682
|
-
sha256: "
|
|
698
|
+
sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
|
|
683
699
|
url: "https://pub.dev"
|
|
684
700
|
source: hosted
|
|
685
|
-
version: "6.3.
|
|
701
|
+
version: "6.3.17"
|
|
686
702
|
url_launcher_ios:
|
|
687
703
|
dependency: transitive
|
|
688
704
|
description:
|
|
689
705
|
name: url_launcher_ios
|
|
690
|
-
sha256:
|
|
706
|
+
sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
|
|
691
707
|
url: "https://pub.dev"
|
|
692
708
|
source: hosted
|
|
693
|
-
version: "6.3.
|
|
709
|
+
version: "6.3.4"
|
|
694
710
|
url_launcher_linux:
|
|
695
711
|
dependency: transitive
|
|
696
712
|
description:
|
|
@@ -703,10 +719,10 @@ packages:
|
|
|
703
719
|
dependency: transitive
|
|
704
720
|
description:
|
|
705
721
|
name: url_launcher_macos
|
|
706
|
-
sha256:
|
|
722
|
+
sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
|
|
707
723
|
url: "https://pub.dev"
|
|
708
724
|
source: hosted
|
|
709
|
-
version: "3.2.
|
|
725
|
+
version: "3.2.3"
|
|
710
726
|
url_launcher_platform_interface:
|
|
711
727
|
dependency: transitive
|
|
712
728
|
description:
|
|
@@ -759,26 +775,26 @@ packages:
|
|
|
759
775
|
dependency: transitive
|
|
760
776
|
description:
|
|
761
777
|
name: vector_graphics_compiler
|
|
762
|
-
sha256:
|
|
778
|
+
sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
|
|
763
779
|
url: "https://pub.dev"
|
|
764
780
|
source: hosted
|
|
765
|
-
version: "1.1.
|
|
781
|
+
version: "1.1.18"
|
|
766
782
|
vector_math:
|
|
767
783
|
dependency: transitive
|
|
768
784
|
description:
|
|
769
785
|
name: vector_math
|
|
770
|
-
sha256:
|
|
786
|
+
sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
|
|
771
787
|
url: "https://pub.dev"
|
|
772
788
|
source: hosted
|
|
773
|
-
version: "2.
|
|
789
|
+
version: "2.2.0"
|
|
774
790
|
vm_service:
|
|
775
791
|
dependency: transitive
|
|
776
792
|
description:
|
|
777
793
|
name: vm_service
|
|
778
|
-
sha256: "
|
|
794
|
+
sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
|
|
779
795
|
url: "https://pub.dev"
|
|
780
796
|
source: hosted
|
|
781
|
-
version: "
|
|
797
|
+
version: "15.0.2"
|
|
782
798
|
web:
|
|
783
799
|
dependency: transitive
|
|
784
800
|
description:
|
|
@@ -807,10 +823,10 @@ packages:
|
|
|
807
823
|
dependency: transitive
|
|
808
824
|
description:
|
|
809
825
|
name: win32
|
|
810
|
-
sha256: "
|
|
826
|
+
sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
|
|
811
827
|
url: "https://pub.dev"
|
|
812
828
|
source: hosted
|
|
813
|
-
version: "5.
|
|
829
|
+
version: "5.14.0"
|
|
814
830
|
win32_registry:
|
|
815
831
|
dependency: transitive
|
|
816
832
|
description:
|
|
@@ -852,5 +868,5 @@ packages:
|
|
|
852
868
|
source: hosted
|
|
853
869
|
version: "6.5.0"
|
|
854
870
|
sdks:
|
|
855
|
-
dart: ">=3.
|
|
871
|
+
dart: ">=3.8.0 <4.0.0"
|
|
856
872
|
flutter: ">=3.29.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flet_audio.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/analysis_options.yaml
RENAMED
|
File without changes
|
{flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/lib/flet_audio.dart
RENAMED
|
File without changes
|
{flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/lib/src/audio.dart
RENAMED
|
File without changes
|
{flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/lib/src/extension.dart
RENAMED
|
File without changes
|
{flet_audio-0.2.0.dev58 → flet_audio-0.2.0.dev504}/src/flutter/flet_audio/lib/src/utils/audio.dart
RENAMED
|
File without changes
|
|
File without changes
|