flet-video 0.2.0.dev504__py3-none-any.whl → 0.70.0.dev6293__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 +4 -0
- flet_video/types.py +47 -0
- flet_video/video.py +9 -6
- {flet_video-0.2.0.dev504.dist-info → flet_video-0.70.0.dev6293.dist-info}/METADATA +12 -24
- flet_video-0.70.0.dev6293.dist-info/RECORD +17 -0
- flutter/flet_video/LICENSE +1 -1
- flutter/flet_video/pubspec.yaml +11 -11
- flet_video-0.2.0.dev504.dist-info/RECORD +0 -20
- flutter/flet_video/CHANGELOG.md +0 -7
- flutter/flet_video/README.md +0 -3
- flutter/flet_video/pubspec.lock +0 -984
- {flet_video-0.2.0.dev504.dist-info → flet_video-0.70.0.dev6293.dist-info}/WHEEL +0 -0
- {flet_video-0.2.0.dev504.dist-info → flet_video-0.70.0.dev6293.dist-info}/licenses/LICENSE +0 -0
- {flet_video-0.2.0.dev504.dist-info → flet_video-0.70.0.dev6293.dist-info}/top_level.txt +0 -0
flet_video/__init__.py
CHANGED
flet_video/types.py
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type definitions and configuration objects for flet-video.
|
|
3
|
+
"""
|
|
4
|
+
|
|
1
5
|
from dataclasses import dataclass, field
|
|
2
6
|
from enum import Enum
|
|
3
7
|
from typing import Optional
|
|
@@ -108,16 +112,59 @@ class VideoSubtitleTrack:
|
|
|
108
112
|
"""The language of the subtitle track, e.g. 'en'."""
|
|
109
113
|
|
|
110
114
|
channels_count: Optional[int] = None
|
|
115
|
+
"""
|
|
116
|
+
The number of audio channels detected in the media.
|
|
117
|
+
"""
|
|
118
|
+
|
|
111
119
|
channels: Optional[str] = None
|
|
120
|
+
"""
|
|
121
|
+
Channel layout string describing the spatial arrangement of channels.
|
|
122
|
+
"""
|
|
123
|
+
|
|
112
124
|
sample_rate: Optional[int] = None
|
|
125
|
+
"""
|
|
126
|
+
Audio sampling rate in hertz.
|
|
127
|
+
"""
|
|
128
|
+
|
|
113
129
|
fps: Optional[ft.Number] = None
|
|
130
|
+
"""
|
|
131
|
+
Video frames per second.
|
|
132
|
+
"""
|
|
133
|
+
|
|
114
134
|
bitrate: Optional[int] = None
|
|
135
|
+
"""
|
|
136
|
+
Overall media bitrate in bits per second.
|
|
137
|
+
"""
|
|
138
|
+
|
|
115
139
|
rotate: Optional[int] = None
|
|
140
|
+
"""
|
|
141
|
+
Rotation metadata in degrees to apply when rendering the video.
|
|
142
|
+
"""
|
|
143
|
+
|
|
116
144
|
par: Optional[ft.Number] = None
|
|
145
|
+
"""
|
|
146
|
+
Pixel aspect ratio value.
|
|
147
|
+
"""
|
|
148
|
+
|
|
117
149
|
audio_channels: Optional[int] = None
|
|
150
|
+
"""
|
|
151
|
+
Explicit audio channel count override.
|
|
152
|
+
"""
|
|
153
|
+
|
|
118
154
|
album_art: Optional[bool] = None
|
|
155
|
+
"""
|
|
156
|
+
Whether the track represents album art rather than timed media.
|
|
157
|
+
"""
|
|
158
|
+
|
|
119
159
|
codec: Optional[str] = None
|
|
160
|
+
"""
|
|
161
|
+
Codec identifier for the media stream.
|
|
162
|
+
"""
|
|
163
|
+
|
|
120
164
|
decoder: Optional[str] = None
|
|
165
|
+
"""
|
|
166
|
+
Decoder name used to process the media stream.
|
|
167
|
+
"""
|
|
121
168
|
|
|
122
169
|
@classmethod
|
|
123
170
|
def none(cls) -> "VideoSubtitleTrack":
|
flet_video/video.py
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Video control definition for the flet-video package.
|
|
3
|
+
"""
|
|
4
|
+
|
|
1
5
|
from dataclasses import field
|
|
2
6
|
from typing import Optional
|
|
3
7
|
|
|
4
8
|
import flet as ft
|
|
5
|
-
|
|
6
9
|
from flet_video.types import (
|
|
7
10
|
PlaylistMode,
|
|
8
11
|
VideoConfiguration,
|
|
@@ -15,13 +18,9 @@ __all__ = ["Video"]
|
|
|
15
18
|
|
|
16
19
|
|
|
17
20
|
@ft.control("Video")
|
|
18
|
-
class Video(ft.
|
|
21
|
+
class Video(ft.LayoutControl):
|
|
19
22
|
"""
|
|
20
23
|
A control that displays a video from a playlist.
|
|
21
|
-
|
|
22
|
-
Raises:
|
|
23
|
-
AssertionError: If the [`volume`][(c).] is not between
|
|
24
|
-
`0.0` and `100.0` (inclusive).
|
|
25
24
|
"""
|
|
26
25
|
|
|
27
26
|
playlist: list[VideoMedia] = field(default_factory=list)
|
|
@@ -85,6 +84,10 @@ class Video(ft.ConstrainedControl):
|
|
|
85
84
|
It's value ranges between `0.0` to `100.0` (inclusive), where `0.0`
|
|
86
85
|
is muted and `100.0` is the maximum volume.
|
|
87
86
|
An exception will be raised if the value is outside this range.
|
|
87
|
+
|
|
88
|
+
Raises:
|
|
89
|
+
AssertionError: If the [`volume`][(c).] is not between
|
|
90
|
+
`0.0` and `100.0` (inclusive).
|
|
88
91
|
"""
|
|
89
92
|
|
|
90
93
|
playback_rate: ft.Number = 1.0
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-video
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.70.0.dev6293
|
|
4
|
+
Summary: Cross-platform video playback for 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
|
|
9
|
-
Project-URL: Repository, https://github.com/flet-dev/flet-video
|
|
10
|
-
Project-URL: Issues, https://github.com/flet-dev/flet
|
|
8
|
+
Project-URL: Documentation, https://docs.flet.dev/video
|
|
9
|
+
Project-URL: Repository, https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-video
|
|
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
|
|
14
|
+
Requires-Dist: flet==0.70.0.dev6293
|
|
15
15
|
Dynamic: license-file
|
|
16
16
|
|
|
17
17
|
# flet-video
|
|
18
18
|
|
|
19
19
|
[](https://pypi.python.org/pypi/flet-video)
|
|
20
20
|
[](https://pepy.tech/project/flet-video)
|
|
21
|
-
[](https://github.com/flet-dev/flet/blob/main/sdk/python/packages/flet-video/LICENSE)
|
|
22
22
|
|
|
23
23
|
A cross-platform video player for [Flet](https://flet.dev) apps.
|
|
24
24
|
|
|
@@ -26,20 +26,13 @@ It is based on the [media_kit](https://pub.dev/packages/media_kit) Flutter packa
|
|
|
26
26
|
|
|
27
27
|
## Documentation
|
|
28
28
|
|
|
29
|
-
Detailed documentation to this package can be found [here](https://flet
|
|
29
|
+
Detailed documentation to this package can be found [here](https://docs.flet.dev/video/).
|
|
30
30
|
|
|
31
31
|
## Platform Support
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
|
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-video` 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-video
|
|
64
|
-
```
|
|
65
|
-
|
|
66
54
|
### Examples
|
|
67
55
|
|
|
68
|
-
For examples, see [these](
|
|
56
|
+
For examples, see [these](https://github.com/flet-dev/flet/tree/main/sdk/python/examples/controls/video).
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
flet_video/__init__.py,sha256=33oTk8_ydccY8DZLPQiEViHrjLov53K7JYs92jamh_E,386
|
|
2
|
+
flet_video/types.py,sha256=0b4ObhaDGwn_lPOjmpZ5-5QDoz_9wWaCgTVfNLv8x98,5323
|
|
3
|
+
flet_video/video.py,sha256=5rR-6FQXLugrrac2_UGH8N7CXYRBQekoeYMmGptwzPI,8155
|
|
4
|
+
flet_video-0.70.0.dev6293.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
5
|
+
flutter/flet_video/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
6
|
+
flutter/flet_video/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
|
|
7
|
+
flutter/flet_video/pubspec.yaml,sha256=xog0e_jpXc_EMv5diDvAlOnA0o0WIMYvnF3S8vPfVhw,411
|
|
8
|
+
flutter/flet_video/lib/flet_video.dart,sha256=x-KG1v-Qb_AiSyH9Y2Jt9PIYPxl_mQjXeIg_BDEQ0iQ,65
|
|
9
|
+
flutter/flet_video/lib/src/extension.dart,sha256=8a6XcgY0KD4HQVkSVx0_6O8WcCqUeVub0_ihq4WW7S4,477
|
|
10
|
+
flutter/flet_video/lib/src/video.dart,sha256=Wlh61Rldan9hPmSxOcOVNPUoN7b8ii5ouv3QaavXeRk,7770
|
|
11
|
+
flutter/flet_video/lib/src/utils/file_utils_io.dart,sha256=7AgfFYmc2hWT3Hqra29zyl4H0y43L5ZnqvFoGuMPCpM,276
|
|
12
|
+
flutter/flet_video/lib/src/utils/file_utils_web.dart,sha256=TeGP-wSeoe39G_EJO2JFhgw6lJXmDXBNW0i-YUgxlaw,138
|
|
13
|
+
flutter/flet_video/lib/src/utils/video.dart,sha256=ictwd-7_8i7KmwGftHAhFFF_w2Y8vuXeeY4-bkfEhEk,4258
|
|
14
|
+
flet_video-0.70.0.dev6293.dist-info/METADATA,sha256=9XeeccaR9av512T35xDnBvfkfV9ouEhJrFqn6mquZig,1895
|
|
15
|
+
flet_video-0.70.0.dev6293.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
16
|
+
flet_video-0.70.0.dev6293.dist-info/top_level.txt,sha256=7omjcyZHBn3gldah0wrmAlkR9Vc1vmtSlhUVZcPg2o0,19
|
|
17
|
+
flet_video-0.70.0.dev6293.dist-info/RECORD,,
|
flutter/flet_video/LICENSE
CHANGED
|
@@ -198,4 +198,4 @@
|
|
|
198
198
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
199
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
200
|
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|
|
201
|
+
limitations under the License.
|
flutter/flet_video/pubspec.yaml
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
name: flet_video
|
|
2
2
|
description: Flet Video control
|
|
3
|
-
|
|
4
|
-
repository: https://github.com/flet-dev/flet-video/src/flutter/flet_video
|
|
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:
|
|
8
|
+
flutter: ">=1.17.0"
|
|
9
|
+
|
|
10
10
|
dependencies:
|
|
11
11
|
flutter:
|
|
12
12
|
sdk: flutter
|
|
13
|
+
|
|
13
14
|
collection: ^1.16.0
|
|
14
|
-
media_kit:
|
|
15
|
-
media_kit_video:
|
|
16
|
-
media_kit_libs_video:
|
|
15
|
+
media_kit: 1.2.1
|
|
16
|
+
media_kit_video: 1.3.1
|
|
17
|
+
media_kit_libs_video: 1.0.7
|
|
18
|
+
|
|
17
19
|
flet:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
path: packages/flet
|
|
21
|
-
ref: main
|
|
20
|
+
path: ../../../../../../../packages/flet
|
|
21
|
+
|
|
22
22
|
dev_dependencies:
|
|
23
23
|
flutter_test:
|
|
24
24
|
sdk: flutter
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
flet_video/__init__.py,sha256=jaNQsiSt765db8odKBLiMLRrgk-YNuSK8eznMk2_1eA,334
|
|
2
|
-
flet_video/types.py,sha256=QO80nyg2DMSxWNxLxTpT256vB1uZQ5dELCnsc9XEYSg,4527
|
|
3
|
-
flet_video/video.py,sha256=cvwNiI7nbqHmu_zsl3IW5Zm_nU_j2yUy2gH5fJB6Wc0,8099
|
|
4
|
-
flet_video-0.2.0.dev504.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
5
|
-
flutter/flet_video/CHANGELOG.md,sha256=FJ0SxmqH1T_rUMLagUr_PqoHRQBloR4octPNKKz4TJ8,54
|
|
6
|
-
flutter/flet_video/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
7
|
-
flutter/flet_video/README.md,sha256=BNJ7_bUq43JAu1VTnjdOnUaV-vDjKDc_QbUvGYbnfbQ,60
|
|
8
|
-
flutter/flet_video/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
|
|
9
|
-
flutter/flet_video/pubspec.lock,sha256=pe47wxOA_E0CSLbqn5PeucSCDEIpeql5ReM2wxipMOg,29418
|
|
10
|
-
flutter/flet_video/pubspec.yaml,sha256=EHyKLQbpBFu40CaWcFdEnl10OJ0aZ_cfOeZffP6P-mA,564
|
|
11
|
-
flutter/flet_video/lib/flet_video.dart,sha256=x-KG1v-Qb_AiSyH9Y2Jt9PIYPxl_mQjXeIg_BDEQ0iQ,65
|
|
12
|
-
flutter/flet_video/lib/src/extension.dart,sha256=8a6XcgY0KD4HQVkSVx0_6O8WcCqUeVub0_ihq4WW7S4,477
|
|
13
|
-
flutter/flet_video/lib/src/video.dart,sha256=Wlh61Rldan9hPmSxOcOVNPUoN7b8ii5ouv3QaavXeRk,7770
|
|
14
|
-
flutter/flet_video/lib/src/utils/file_utils_io.dart,sha256=7AgfFYmc2hWT3Hqra29zyl4H0y43L5ZnqvFoGuMPCpM,276
|
|
15
|
-
flutter/flet_video/lib/src/utils/file_utils_web.dart,sha256=TeGP-wSeoe39G_EJO2JFhgw6lJXmDXBNW0i-YUgxlaw,138
|
|
16
|
-
flutter/flet_video/lib/src/utils/video.dart,sha256=ictwd-7_8i7KmwGftHAhFFF_w2Y8vuXeeY4-bkfEhEk,4258
|
|
17
|
-
flet_video-0.2.0.dev504.dist-info/METADATA,sha256=slis4d0I39YQiHlr2KzGf5lrXwqhrDnk2OAcYl7btiw,1925
|
|
18
|
-
flet_video-0.2.0.dev504.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
flet_video-0.2.0.dev504.dist-info/top_level.txt,sha256=7omjcyZHBn3gldah0wrmAlkR9Vc1vmtSlhUVZcPg2o0,19
|
|
20
|
-
flet_video-0.2.0.dev504.dist-info/RECORD,,
|
flutter/flet_video/CHANGELOG.md
DELETED
flutter/flet_video/README.md
DELETED
flutter/flet_video/pubspec.lock
DELETED
|
@@ -1,984 +0,0 @@
|
|
|
1
|
-
# Generated by pub
|
|
2
|
-
# See https://dart.dev/tools/pub/glossary#lockfile
|
|
3
|
-
packages:
|
|
4
|
-
archive:
|
|
5
|
-
dependency: transitive
|
|
6
|
-
description:
|
|
7
|
-
name: archive
|
|
8
|
-
sha256: "2fde1607386ab523f7a36bb3e7edb43bd58e6edaf2ffb29d8a6d578b297fdbbd"
|
|
9
|
-
url: "https://pub.dev"
|
|
10
|
-
source: hosted
|
|
11
|
-
version: "4.0.7"
|
|
12
|
-
args:
|
|
13
|
-
dependency: transitive
|
|
14
|
-
description:
|
|
15
|
-
name: args
|
|
16
|
-
sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04
|
|
17
|
-
url: "https://pub.dev"
|
|
18
|
-
source: hosted
|
|
19
|
-
version: "2.7.0"
|
|
20
|
-
async:
|
|
21
|
-
dependency: transitive
|
|
22
|
-
description:
|
|
23
|
-
name: async
|
|
24
|
-
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
|
|
25
|
-
url: "https://pub.dev"
|
|
26
|
-
source: hosted
|
|
27
|
-
version: "2.13.0"
|
|
28
|
-
boolean_selector:
|
|
29
|
-
dependency: transitive
|
|
30
|
-
description:
|
|
31
|
-
name: boolean_selector
|
|
32
|
-
sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
|
|
33
|
-
url: "https://pub.dev"
|
|
34
|
-
source: hosted
|
|
35
|
-
version: "2.1.2"
|
|
36
|
-
characters:
|
|
37
|
-
dependency: transitive
|
|
38
|
-
description:
|
|
39
|
-
name: characters
|
|
40
|
-
sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803
|
|
41
|
-
url: "https://pub.dev"
|
|
42
|
-
source: hosted
|
|
43
|
-
version: "1.4.0"
|
|
44
|
-
clock:
|
|
45
|
-
dependency: transitive
|
|
46
|
-
description:
|
|
47
|
-
name: clock
|
|
48
|
-
sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
|
|
49
|
-
url: "https://pub.dev"
|
|
50
|
-
source: hosted
|
|
51
|
-
version: "1.1.2"
|
|
52
|
-
collection:
|
|
53
|
-
dependency: "direct main"
|
|
54
|
-
description:
|
|
55
|
-
name: collection
|
|
56
|
-
sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
|
|
57
|
-
url: "https://pub.dev"
|
|
58
|
-
source: hosted
|
|
59
|
-
version: "1.19.1"
|
|
60
|
-
cross_file:
|
|
61
|
-
dependency: transitive
|
|
62
|
-
description:
|
|
63
|
-
name: cross_file
|
|
64
|
-
sha256: "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670"
|
|
65
|
-
url: "https://pub.dev"
|
|
66
|
-
source: hosted
|
|
67
|
-
version: "0.3.4+2"
|
|
68
|
-
crypto:
|
|
69
|
-
dependency: transitive
|
|
70
|
-
description:
|
|
71
|
-
name: crypto
|
|
72
|
-
sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
|
|
73
|
-
url: "https://pub.dev"
|
|
74
|
-
source: hosted
|
|
75
|
-
version: "3.0.6"
|
|
76
|
-
dbus:
|
|
77
|
-
dependency: transitive
|
|
78
|
-
description:
|
|
79
|
-
name: dbus
|
|
80
|
-
sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c"
|
|
81
|
-
url: "https://pub.dev"
|
|
82
|
-
source: hosted
|
|
83
|
-
version: "0.7.11"
|
|
84
|
-
device_info_plus:
|
|
85
|
-
dependency: transitive
|
|
86
|
-
description:
|
|
87
|
-
name: device_info_plus
|
|
88
|
-
sha256: "98f28b42168cc509abc92f88518882fd58061ea372d7999aecc424345c7bff6a"
|
|
89
|
-
url: "https://pub.dev"
|
|
90
|
-
source: hosted
|
|
91
|
-
version: "11.5.0"
|
|
92
|
-
device_info_plus_platform_interface:
|
|
93
|
-
dependency: transitive
|
|
94
|
-
description:
|
|
95
|
-
name: device_info_plus_platform_interface
|
|
96
|
-
sha256: e1ea89119e34903dca74b883d0dd78eb762814f97fb6c76f35e9ff74d261a18f
|
|
97
|
-
url: "https://pub.dev"
|
|
98
|
-
source: hosted
|
|
99
|
-
version: "7.0.3"
|
|
100
|
-
equatable:
|
|
101
|
-
dependency: transitive
|
|
102
|
-
description:
|
|
103
|
-
name: equatable
|
|
104
|
-
sha256: "567c64b3cb4cf82397aac55f4f0cbd3ca20d77c6c03bedbc4ceaddc08904aef7"
|
|
105
|
-
url: "https://pub.dev"
|
|
106
|
-
source: hosted
|
|
107
|
-
version: "2.0.7"
|
|
108
|
-
fake_async:
|
|
109
|
-
dependency: transitive
|
|
110
|
-
description:
|
|
111
|
-
name: fake_async
|
|
112
|
-
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
|
|
113
|
-
url: "https://pub.dev"
|
|
114
|
-
source: hosted
|
|
115
|
-
version: "1.3.3"
|
|
116
|
-
ffi:
|
|
117
|
-
dependency: transitive
|
|
118
|
-
description:
|
|
119
|
-
name: ffi
|
|
120
|
-
sha256: "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418"
|
|
121
|
-
url: "https://pub.dev"
|
|
122
|
-
source: hosted
|
|
123
|
-
version: "2.1.4"
|
|
124
|
-
file:
|
|
125
|
-
dependency: transitive
|
|
126
|
-
description:
|
|
127
|
-
name: file
|
|
128
|
-
sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
|
|
129
|
-
url: "https://pub.dev"
|
|
130
|
-
source: hosted
|
|
131
|
-
version: "7.0.1"
|
|
132
|
-
file_picker:
|
|
133
|
-
dependency: transitive
|
|
134
|
-
description:
|
|
135
|
-
name: file_picker
|
|
136
|
-
sha256: e7e16c9d15c36330b94ca0e2ad8cb61f93cd5282d0158c09805aed13b5452f22
|
|
137
|
-
url: "https://pub.dev"
|
|
138
|
-
source: hosted
|
|
139
|
-
version: "10.3.2"
|
|
140
|
-
fixnum:
|
|
141
|
-
dependency: transitive
|
|
142
|
-
description:
|
|
143
|
-
name: fixnum
|
|
144
|
-
sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
|
|
145
|
-
url: "https://pub.dev"
|
|
146
|
-
source: hosted
|
|
147
|
-
version: "1.1.1"
|
|
148
|
-
flet:
|
|
149
|
-
dependency: "direct main"
|
|
150
|
-
description:
|
|
151
|
-
path: "packages/flet"
|
|
152
|
-
ref: main
|
|
153
|
-
resolved-ref: "27cea68736639eff49200813838bba3b2bd4e2b0"
|
|
154
|
-
url: "https://github.com/flet-dev/flet.git"
|
|
155
|
-
source: git
|
|
156
|
-
version: "0.70.0"
|
|
157
|
-
flutter:
|
|
158
|
-
dependency: "direct main"
|
|
159
|
-
description: flutter
|
|
160
|
-
source: sdk
|
|
161
|
-
version: "0.0.0"
|
|
162
|
-
flutter_highlight:
|
|
163
|
-
dependency: transitive
|
|
164
|
-
description:
|
|
165
|
-
name: flutter_highlight
|
|
166
|
-
sha256: "7b96333867aa07e122e245c033b8ad622e4e3a42a1a2372cbb098a2541d8782c"
|
|
167
|
-
url: "https://pub.dev"
|
|
168
|
-
source: hosted
|
|
169
|
-
version: "0.7.0"
|
|
170
|
-
flutter_lints:
|
|
171
|
-
dependency: "direct dev"
|
|
172
|
-
description:
|
|
173
|
-
name: flutter_lints
|
|
174
|
-
sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
|
|
175
|
-
url: "https://pub.dev"
|
|
176
|
-
source: hosted
|
|
177
|
-
version: "3.0.2"
|
|
178
|
-
flutter_localizations:
|
|
179
|
-
dependency: transitive
|
|
180
|
-
description: flutter
|
|
181
|
-
source: sdk
|
|
182
|
-
version: "0.0.0"
|
|
183
|
-
flutter_markdown:
|
|
184
|
-
dependency: transitive
|
|
185
|
-
description:
|
|
186
|
-
name: flutter_markdown
|
|
187
|
-
sha256: e7bbc718adc9476aa14cfddc1ef048d2e21e4e8f18311aaac723266db9f9e7b5
|
|
188
|
-
url: "https://pub.dev"
|
|
189
|
-
source: hosted
|
|
190
|
-
version: "0.7.6+2"
|
|
191
|
-
flutter_plugin_android_lifecycle:
|
|
192
|
-
dependency: transitive
|
|
193
|
-
description:
|
|
194
|
-
name: flutter_plugin_android_lifecycle
|
|
195
|
-
sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
|
|
196
|
-
url: "https://pub.dev"
|
|
197
|
-
source: hosted
|
|
198
|
-
version: "2.0.29"
|
|
199
|
-
flutter_svg:
|
|
200
|
-
dependency: transitive
|
|
201
|
-
description:
|
|
202
|
-
name: flutter_svg
|
|
203
|
-
sha256: d44bf546b13025ec7353091516f6881f1d4c633993cb109c3916c3a0159dadf1
|
|
204
|
-
url: "https://pub.dev"
|
|
205
|
-
source: hosted
|
|
206
|
-
version: "2.1.0"
|
|
207
|
-
flutter_test:
|
|
208
|
-
dependency: "direct dev"
|
|
209
|
-
description: flutter
|
|
210
|
-
source: sdk
|
|
211
|
-
version: "0.0.0"
|
|
212
|
-
flutter_web_plugins:
|
|
213
|
-
dependency: transitive
|
|
214
|
-
description: flutter
|
|
215
|
-
source: sdk
|
|
216
|
-
version: "0.0.0"
|
|
217
|
-
highlight:
|
|
218
|
-
dependency: transitive
|
|
219
|
-
description:
|
|
220
|
-
name: highlight
|
|
221
|
-
sha256: "5353a83ffe3e3eca7df0abfb72dcf3fa66cc56b953728e7113ad4ad88497cf21"
|
|
222
|
-
url: "https://pub.dev"
|
|
223
|
-
source: hosted
|
|
224
|
-
version: "0.7.0"
|
|
225
|
-
http:
|
|
226
|
-
dependency: transitive
|
|
227
|
-
description:
|
|
228
|
-
name: http
|
|
229
|
-
sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
|
|
230
|
-
url: "https://pub.dev"
|
|
231
|
-
source: hosted
|
|
232
|
-
version: "1.3.0"
|
|
233
|
-
http_parser:
|
|
234
|
-
dependency: transitive
|
|
235
|
-
description:
|
|
236
|
-
name: http_parser
|
|
237
|
-
sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
|
|
238
|
-
url: "https://pub.dev"
|
|
239
|
-
source: hosted
|
|
240
|
-
version: "4.1.2"
|
|
241
|
-
image:
|
|
242
|
-
dependency: transitive
|
|
243
|
-
description:
|
|
244
|
-
name: image
|
|
245
|
-
sha256: "4e973fcf4caae1a4be2fa0a13157aa38a8f9cb049db6529aa00b4d71abc4d928"
|
|
246
|
-
url: "https://pub.dev"
|
|
247
|
-
source: hosted
|
|
248
|
-
version: "4.5.4"
|
|
249
|
-
intl:
|
|
250
|
-
dependency: transitive
|
|
251
|
-
description:
|
|
252
|
-
name: intl
|
|
253
|
-
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
|
|
254
|
-
url: "https://pub.dev"
|
|
255
|
-
source: hosted
|
|
256
|
-
version: "0.20.2"
|
|
257
|
-
json_annotation:
|
|
258
|
-
dependency: transitive
|
|
259
|
-
description:
|
|
260
|
-
name: json_annotation
|
|
261
|
-
sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
|
|
262
|
-
url: "https://pub.dev"
|
|
263
|
-
source: hosted
|
|
264
|
-
version: "4.9.0"
|
|
265
|
-
leak_tracker:
|
|
266
|
-
dependency: transitive
|
|
267
|
-
description:
|
|
268
|
-
name: leak_tracker
|
|
269
|
-
sha256: "8dcda04c3fc16c14f48a7bb586d4be1f0d1572731b6d81d51772ef47c02081e0"
|
|
270
|
-
url: "https://pub.dev"
|
|
271
|
-
source: hosted
|
|
272
|
-
version: "11.0.1"
|
|
273
|
-
leak_tracker_flutter_testing:
|
|
274
|
-
dependency: transitive
|
|
275
|
-
description:
|
|
276
|
-
name: leak_tracker_flutter_testing
|
|
277
|
-
sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
|
|
278
|
-
url: "https://pub.dev"
|
|
279
|
-
source: hosted
|
|
280
|
-
version: "3.0.10"
|
|
281
|
-
leak_tracker_testing:
|
|
282
|
-
dependency: transitive
|
|
283
|
-
description:
|
|
284
|
-
name: leak_tracker_testing
|
|
285
|
-
sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
|
|
286
|
-
url: "https://pub.dev"
|
|
287
|
-
source: hosted
|
|
288
|
-
version: "3.0.2"
|
|
289
|
-
lints:
|
|
290
|
-
dependency: transitive
|
|
291
|
-
description:
|
|
292
|
-
name: lints
|
|
293
|
-
sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
|
|
294
|
-
url: "https://pub.dev"
|
|
295
|
-
source: hosted
|
|
296
|
-
version: "3.0.0"
|
|
297
|
-
logging:
|
|
298
|
-
dependency: transitive
|
|
299
|
-
description:
|
|
300
|
-
name: logging
|
|
301
|
-
sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
|
|
302
|
-
url: "https://pub.dev"
|
|
303
|
-
source: hosted
|
|
304
|
-
version: "1.3.0"
|
|
305
|
-
markdown:
|
|
306
|
-
dependency: transitive
|
|
307
|
-
description:
|
|
308
|
-
name: markdown
|
|
309
|
-
sha256: "935e23e1ff3bc02d390bad4d4be001208ee92cc217cb5b5a6c19bc14aaa318c1"
|
|
310
|
-
url: "https://pub.dev"
|
|
311
|
-
source: hosted
|
|
312
|
-
version: "7.3.0"
|
|
313
|
-
matcher:
|
|
314
|
-
dependency: transitive
|
|
315
|
-
description:
|
|
316
|
-
name: matcher
|
|
317
|
-
sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
|
|
318
|
-
url: "https://pub.dev"
|
|
319
|
-
source: hosted
|
|
320
|
-
version: "0.12.17"
|
|
321
|
-
material_color_utilities:
|
|
322
|
-
dependency: transitive
|
|
323
|
-
description:
|
|
324
|
-
name: material_color_utilities
|
|
325
|
-
sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
|
|
326
|
-
url: "https://pub.dev"
|
|
327
|
-
source: hosted
|
|
328
|
-
version: "0.11.1"
|
|
329
|
-
media_kit:
|
|
330
|
-
dependency: "direct main"
|
|
331
|
-
description:
|
|
332
|
-
name: media_kit
|
|
333
|
-
sha256: "48c10c3785df5d88f0eef970743f8c99b2e5da2b34b9d8f9876e598f62d9e776"
|
|
334
|
-
url: "https://pub.dev"
|
|
335
|
-
source: hosted
|
|
336
|
-
version: "1.2.0"
|
|
337
|
-
media_kit_libs_android_video:
|
|
338
|
-
dependency: transitive
|
|
339
|
-
description:
|
|
340
|
-
name: media_kit_libs_android_video
|
|
341
|
-
sha256: adff9b571b8ead0867f9f91070f8df39562078c0eb3371d88b9029a2d547d7b7
|
|
342
|
-
url: "https://pub.dev"
|
|
343
|
-
source: hosted
|
|
344
|
-
version: "1.3.7"
|
|
345
|
-
media_kit_libs_ios_video:
|
|
346
|
-
dependency: transitive
|
|
347
|
-
description:
|
|
348
|
-
name: media_kit_libs_ios_video
|
|
349
|
-
sha256: b5382994eb37a4564c368386c154ad70ba0cc78dacdd3fb0cd9f30db6d837991
|
|
350
|
-
url: "https://pub.dev"
|
|
351
|
-
source: hosted
|
|
352
|
-
version: "1.1.4"
|
|
353
|
-
media_kit_libs_linux:
|
|
354
|
-
dependency: transitive
|
|
355
|
-
description:
|
|
356
|
-
name: media_kit_libs_linux
|
|
357
|
-
sha256: "2b473399a49ec94452c4d4ae51cfc0f6585074398d74216092bf3d54aac37ecf"
|
|
358
|
-
url: "https://pub.dev"
|
|
359
|
-
source: hosted
|
|
360
|
-
version: "1.2.1"
|
|
361
|
-
media_kit_libs_macos_video:
|
|
362
|
-
dependency: transitive
|
|
363
|
-
description:
|
|
364
|
-
name: media_kit_libs_macos_video
|
|
365
|
-
sha256: f26aa1452b665df288e360393758f84b911f70ffb3878032e1aabba23aa1032d
|
|
366
|
-
url: "https://pub.dev"
|
|
367
|
-
source: hosted
|
|
368
|
-
version: "1.1.4"
|
|
369
|
-
media_kit_libs_video:
|
|
370
|
-
dependency: "direct main"
|
|
371
|
-
description:
|
|
372
|
-
name: media_kit_libs_video
|
|
373
|
-
sha256: "958cc55e7065d9d01f52a2842dab2a0812a92add18489f1006d864fb5e42a3ef"
|
|
374
|
-
url: "https://pub.dev"
|
|
375
|
-
source: hosted
|
|
376
|
-
version: "1.0.6"
|
|
377
|
-
media_kit_libs_windows_video:
|
|
378
|
-
dependency: transitive
|
|
379
|
-
description:
|
|
380
|
-
name: media_kit_libs_windows_video
|
|
381
|
-
sha256: dff76da2778729ab650229e6b4ec6ec111eb5151431002cbd7ea304ff1f112ab
|
|
382
|
-
url: "https://pub.dev"
|
|
383
|
-
source: hosted
|
|
384
|
-
version: "1.0.11"
|
|
385
|
-
media_kit_video:
|
|
386
|
-
dependency: "direct main"
|
|
387
|
-
description:
|
|
388
|
-
name: media_kit_video
|
|
389
|
-
sha256: a656a9463298c1adc64c57f2d012874f7f2900f0c614d9545a3e7b8bb9e2137b
|
|
390
|
-
url: "https://pub.dev"
|
|
391
|
-
source: hosted
|
|
392
|
-
version: "1.3.0"
|
|
393
|
-
meta:
|
|
394
|
-
dependency: transitive
|
|
395
|
-
description:
|
|
396
|
-
name: meta
|
|
397
|
-
sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
|
|
398
|
-
url: "https://pub.dev"
|
|
399
|
-
source: hosted
|
|
400
|
-
version: "1.16.0"
|
|
401
|
-
msgpack_dart:
|
|
402
|
-
dependency: transitive
|
|
403
|
-
description:
|
|
404
|
-
name: msgpack_dart
|
|
405
|
-
sha256: c2d235ed01f364719b5296aecf43ac330f0d7bc865fa134d0d7910a40454dffb
|
|
406
|
-
url: "https://pub.dev"
|
|
407
|
-
source: hosted
|
|
408
|
-
version: "1.0.1"
|
|
409
|
-
nested:
|
|
410
|
-
dependency: transitive
|
|
411
|
-
description:
|
|
412
|
-
name: nested
|
|
413
|
-
sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
|
|
414
|
-
url: "https://pub.dev"
|
|
415
|
-
source: hosted
|
|
416
|
-
version: "1.0.0"
|
|
417
|
-
package_info_plus:
|
|
418
|
-
dependency: transitive
|
|
419
|
-
description:
|
|
420
|
-
name: package_info_plus
|
|
421
|
-
sha256: "16eee997588c60225bda0488b6dcfac69280a6b7a3cf02c741895dd370a02968"
|
|
422
|
-
url: "https://pub.dev"
|
|
423
|
-
source: hosted
|
|
424
|
-
version: "8.3.1"
|
|
425
|
-
package_info_plus_platform_interface:
|
|
426
|
-
dependency: transitive
|
|
427
|
-
description:
|
|
428
|
-
name: package_info_plus_platform_interface
|
|
429
|
-
sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086"
|
|
430
|
-
url: "https://pub.dev"
|
|
431
|
-
source: hosted
|
|
432
|
-
version: "3.2.1"
|
|
433
|
-
path:
|
|
434
|
-
dependency: transitive
|
|
435
|
-
description:
|
|
436
|
-
name: path
|
|
437
|
-
sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
|
|
438
|
-
url: "https://pub.dev"
|
|
439
|
-
source: hosted
|
|
440
|
-
version: "1.9.1"
|
|
441
|
-
path_parsing:
|
|
442
|
-
dependency: transitive
|
|
443
|
-
description:
|
|
444
|
-
name: path_parsing
|
|
445
|
-
sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca"
|
|
446
|
-
url: "https://pub.dev"
|
|
447
|
-
source: hosted
|
|
448
|
-
version: "1.1.0"
|
|
449
|
-
path_provider:
|
|
450
|
-
dependency: transitive
|
|
451
|
-
description:
|
|
452
|
-
name: path_provider
|
|
453
|
-
sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
|
|
454
|
-
url: "https://pub.dev"
|
|
455
|
-
source: hosted
|
|
456
|
-
version: "2.1.5"
|
|
457
|
-
path_provider_android:
|
|
458
|
-
dependency: transitive
|
|
459
|
-
description:
|
|
460
|
-
name: path_provider_android
|
|
461
|
-
sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9
|
|
462
|
-
url: "https://pub.dev"
|
|
463
|
-
source: hosted
|
|
464
|
-
version: "2.2.17"
|
|
465
|
-
path_provider_foundation:
|
|
466
|
-
dependency: transitive
|
|
467
|
-
description:
|
|
468
|
-
name: path_provider_foundation
|
|
469
|
-
sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
|
|
470
|
-
url: "https://pub.dev"
|
|
471
|
-
source: hosted
|
|
472
|
-
version: "2.4.2"
|
|
473
|
-
path_provider_linux:
|
|
474
|
-
dependency: transitive
|
|
475
|
-
description:
|
|
476
|
-
name: path_provider_linux
|
|
477
|
-
sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
|
|
478
|
-
url: "https://pub.dev"
|
|
479
|
-
source: hosted
|
|
480
|
-
version: "2.2.1"
|
|
481
|
-
path_provider_platform_interface:
|
|
482
|
-
dependency: transitive
|
|
483
|
-
description:
|
|
484
|
-
name: path_provider_platform_interface
|
|
485
|
-
sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
|
|
486
|
-
url: "https://pub.dev"
|
|
487
|
-
source: hosted
|
|
488
|
-
version: "2.1.2"
|
|
489
|
-
path_provider_windows:
|
|
490
|
-
dependency: transitive
|
|
491
|
-
description:
|
|
492
|
-
name: path_provider_windows
|
|
493
|
-
sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
|
|
494
|
-
url: "https://pub.dev"
|
|
495
|
-
source: hosted
|
|
496
|
-
version: "2.3.0"
|
|
497
|
-
petitparser:
|
|
498
|
-
dependency: transitive
|
|
499
|
-
description:
|
|
500
|
-
name: petitparser
|
|
501
|
-
sha256: "07c8f0b1913bcde1ff0d26e57ace2f3012ccbf2b204e070290dad3bb22797646"
|
|
502
|
-
url: "https://pub.dev"
|
|
503
|
-
source: hosted
|
|
504
|
-
version: "6.1.0"
|
|
505
|
-
platform:
|
|
506
|
-
dependency: transitive
|
|
507
|
-
description:
|
|
508
|
-
name: platform
|
|
509
|
-
sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
|
|
510
|
-
url: "https://pub.dev"
|
|
511
|
-
source: hosted
|
|
512
|
-
version: "3.1.6"
|
|
513
|
-
plugin_platform_interface:
|
|
514
|
-
dependency: transitive
|
|
515
|
-
description:
|
|
516
|
-
name: plugin_platform_interface
|
|
517
|
-
sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
|
|
518
|
-
url: "https://pub.dev"
|
|
519
|
-
source: hosted
|
|
520
|
-
version: "2.1.8"
|
|
521
|
-
posix:
|
|
522
|
-
dependency: transitive
|
|
523
|
-
description:
|
|
524
|
-
name: posix
|
|
525
|
-
sha256: "6323a5b0fa688b6a010df4905a56b00181479e6d10534cecfecede2aa55add61"
|
|
526
|
-
url: "https://pub.dev"
|
|
527
|
-
source: hosted
|
|
528
|
-
version: "6.0.3"
|
|
529
|
-
provider:
|
|
530
|
-
dependency: transitive
|
|
531
|
-
description:
|
|
532
|
-
name: provider
|
|
533
|
-
sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272"
|
|
534
|
-
url: "https://pub.dev"
|
|
535
|
-
source: hosted
|
|
536
|
-
version: "6.1.5+1"
|
|
537
|
-
safe_local_storage:
|
|
538
|
-
dependency: transitive
|
|
539
|
-
description:
|
|
540
|
-
name: safe_local_storage
|
|
541
|
-
sha256: e9a21b6fec7a8aa62cc2585ff4c1b127df42f3185adbd2aca66b47abe2e80236
|
|
542
|
-
url: "https://pub.dev"
|
|
543
|
-
source: hosted
|
|
544
|
-
version: "2.0.1"
|
|
545
|
-
screen_brightness_android:
|
|
546
|
-
dependency: transitive
|
|
547
|
-
description:
|
|
548
|
-
name: screen_brightness_android
|
|
549
|
-
sha256: fb5fa43cb89d0c9b8534556c427db1e97e46594ac5d66ebdcf16063b773d54ed
|
|
550
|
-
url: "https://pub.dev"
|
|
551
|
-
source: hosted
|
|
552
|
-
version: "2.1.2"
|
|
553
|
-
screen_brightness_platform_interface:
|
|
554
|
-
dependency: transitive
|
|
555
|
-
description:
|
|
556
|
-
name: screen_brightness_platform_interface
|
|
557
|
-
sha256: "737bd47b57746bc4291cab1b8a5843ee881af499514881b0247ec77447ee769c"
|
|
558
|
-
url: "https://pub.dev"
|
|
559
|
-
source: hosted
|
|
560
|
-
version: "2.1.0"
|
|
561
|
-
screen_retriever:
|
|
562
|
-
dependency: transitive
|
|
563
|
-
description:
|
|
564
|
-
name: screen_retriever
|
|
565
|
-
sha256: "570dbc8e4f70bac451e0efc9c9bb19fa2d6799a11e6ef04f946d7886d2e23d0c"
|
|
566
|
-
url: "https://pub.dev"
|
|
567
|
-
source: hosted
|
|
568
|
-
version: "0.2.0"
|
|
569
|
-
screen_retriever_linux:
|
|
570
|
-
dependency: transitive
|
|
571
|
-
description:
|
|
572
|
-
name: screen_retriever_linux
|
|
573
|
-
sha256: f7f8120c92ef0784e58491ab664d01efda79a922b025ff286e29aa123ea3dd18
|
|
574
|
-
url: "https://pub.dev"
|
|
575
|
-
source: hosted
|
|
576
|
-
version: "0.2.0"
|
|
577
|
-
screen_retriever_macos:
|
|
578
|
-
dependency: transitive
|
|
579
|
-
description:
|
|
580
|
-
name: screen_retriever_macos
|
|
581
|
-
sha256: "71f956e65c97315dd661d71f828708bd97b6d358e776f1a30d5aa7d22d78a149"
|
|
582
|
-
url: "https://pub.dev"
|
|
583
|
-
source: hosted
|
|
584
|
-
version: "0.2.0"
|
|
585
|
-
screen_retriever_platform_interface:
|
|
586
|
-
dependency: transitive
|
|
587
|
-
description:
|
|
588
|
-
name: screen_retriever_platform_interface
|
|
589
|
-
sha256: ee197f4581ff0d5608587819af40490748e1e39e648d7680ecf95c05197240c0
|
|
590
|
-
url: "https://pub.dev"
|
|
591
|
-
source: hosted
|
|
592
|
-
version: "0.2.0"
|
|
593
|
-
screen_retriever_windows:
|
|
594
|
-
dependency: transitive
|
|
595
|
-
description:
|
|
596
|
-
name: screen_retriever_windows
|
|
597
|
-
sha256: "449ee257f03ca98a57288ee526a301a430a344a161f9202b4fcc38576716fe13"
|
|
598
|
-
url: "https://pub.dev"
|
|
599
|
-
source: hosted
|
|
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"
|
|
609
|
-
sensors_plus:
|
|
610
|
-
dependency: transitive
|
|
611
|
-
description:
|
|
612
|
-
name: sensors_plus
|
|
613
|
-
sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
|
|
614
|
-
url: "https://pub.dev"
|
|
615
|
-
source: hosted
|
|
616
|
-
version: "6.1.2"
|
|
617
|
-
sensors_plus_platform_interface:
|
|
618
|
-
dependency: transitive
|
|
619
|
-
description:
|
|
620
|
-
name: sensors_plus_platform_interface
|
|
621
|
-
sha256: "58815d2f5e46c0c41c40fb39375d3f127306f7742efe3b891c0b1c87e2b5cd5d"
|
|
622
|
-
url: "https://pub.dev"
|
|
623
|
-
source: hosted
|
|
624
|
-
version: "2.0.1"
|
|
625
|
-
shared_preferences:
|
|
626
|
-
dependency: transitive
|
|
627
|
-
description:
|
|
628
|
-
name: shared_preferences
|
|
629
|
-
sha256: "846849e3e9b68f3ef4b60c60cf4b3e02e9321bc7f4d8c4692cf87ffa82fc8a3a"
|
|
630
|
-
url: "https://pub.dev"
|
|
631
|
-
source: hosted
|
|
632
|
-
version: "2.5.2"
|
|
633
|
-
shared_preferences_android:
|
|
634
|
-
dependency: transitive
|
|
635
|
-
description:
|
|
636
|
-
name: shared_preferences_android
|
|
637
|
-
sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
|
|
638
|
-
url: "https://pub.dev"
|
|
639
|
-
source: hosted
|
|
640
|
-
version: "2.4.11"
|
|
641
|
-
shared_preferences_foundation:
|
|
642
|
-
dependency: transitive
|
|
643
|
-
description:
|
|
644
|
-
name: shared_preferences_foundation
|
|
645
|
-
sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
|
|
646
|
-
url: "https://pub.dev"
|
|
647
|
-
source: hosted
|
|
648
|
-
version: "2.5.4"
|
|
649
|
-
shared_preferences_linux:
|
|
650
|
-
dependency: transitive
|
|
651
|
-
description:
|
|
652
|
-
name: shared_preferences_linux
|
|
653
|
-
sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
|
|
654
|
-
url: "https://pub.dev"
|
|
655
|
-
source: hosted
|
|
656
|
-
version: "2.4.1"
|
|
657
|
-
shared_preferences_platform_interface:
|
|
658
|
-
dependency: transitive
|
|
659
|
-
description:
|
|
660
|
-
name: shared_preferences_platform_interface
|
|
661
|
-
sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
|
|
662
|
-
url: "https://pub.dev"
|
|
663
|
-
source: hosted
|
|
664
|
-
version: "2.4.1"
|
|
665
|
-
shared_preferences_web:
|
|
666
|
-
dependency: transitive
|
|
667
|
-
description:
|
|
668
|
-
name: shared_preferences_web
|
|
669
|
-
sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019
|
|
670
|
-
url: "https://pub.dev"
|
|
671
|
-
source: hosted
|
|
672
|
-
version: "2.4.3"
|
|
673
|
-
shared_preferences_windows:
|
|
674
|
-
dependency: transitive
|
|
675
|
-
description:
|
|
676
|
-
name: shared_preferences_windows
|
|
677
|
-
sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
|
|
678
|
-
url: "https://pub.dev"
|
|
679
|
-
source: hosted
|
|
680
|
-
version: "2.4.1"
|
|
681
|
-
sky_engine:
|
|
682
|
-
dependency: transitive
|
|
683
|
-
description: flutter
|
|
684
|
-
source: sdk
|
|
685
|
-
version: "0.0.0"
|
|
686
|
-
source_span:
|
|
687
|
-
dependency: transitive
|
|
688
|
-
description:
|
|
689
|
-
name: source_span
|
|
690
|
-
sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
|
|
691
|
-
url: "https://pub.dev"
|
|
692
|
-
source: hosted
|
|
693
|
-
version: "1.10.1"
|
|
694
|
-
sprintf:
|
|
695
|
-
dependency: transitive
|
|
696
|
-
description:
|
|
697
|
-
name: sprintf
|
|
698
|
-
sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23"
|
|
699
|
-
url: "https://pub.dev"
|
|
700
|
-
source: hosted
|
|
701
|
-
version: "7.0.0"
|
|
702
|
-
stack_trace:
|
|
703
|
-
dependency: transitive
|
|
704
|
-
description:
|
|
705
|
-
name: stack_trace
|
|
706
|
-
sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
|
|
707
|
-
url: "https://pub.dev"
|
|
708
|
-
source: hosted
|
|
709
|
-
version: "1.12.1"
|
|
710
|
-
stream_channel:
|
|
711
|
-
dependency: transitive
|
|
712
|
-
description:
|
|
713
|
-
name: stream_channel
|
|
714
|
-
sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
|
|
715
|
-
url: "https://pub.dev"
|
|
716
|
-
source: hosted
|
|
717
|
-
version: "2.1.4"
|
|
718
|
-
string_scanner:
|
|
719
|
-
dependency: transitive
|
|
720
|
-
description:
|
|
721
|
-
name: string_scanner
|
|
722
|
-
sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
|
|
723
|
-
url: "https://pub.dev"
|
|
724
|
-
source: hosted
|
|
725
|
-
version: "1.4.1"
|
|
726
|
-
synchronized:
|
|
727
|
-
dependency: transitive
|
|
728
|
-
description:
|
|
729
|
-
name: synchronized
|
|
730
|
-
sha256: c254ade258ec8282947a0acbbc90b9575b4f19673533ee46f2f6e9b3aeefd7c0
|
|
731
|
-
url: "https://pub.dev"
|
|
732
|
-
source: hosted
|
|
733
|
-
version: "3.4.0"
|
|
734
|
-
term_glyph:
|
|
735
|
-
dependency: transitive
|
|
736
|
-
description:
|
|
737
|
-
name: term_glyph
|
|
738
|
-
sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
|
|
739
|
-
url: "https://pub.dev"
|
|
740
|
-
source: hosted
|
|
741
|
-
version: "1.2.2"
|
|
742
|
-
test_api:
|
|
743
|
-
dependency: transitive
|
|
744
|
-
description:
|
|
745
|
-
name: test_api
|
|
746
|
-
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
|
|
747
|
-
url: "https://pub.dev"
|
|
748
|
-
source: hosted
|
|
749
|
-
version: "0.7.6"
|
|
750
|
-
typed_data:
|
|
751
|
-
dependency: transitive
|
|
752
|
-
description:
|
|
753
|
-
name: typed_data
|
|
754
|
-
sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
|
|
755
|
-
url: "https://pub.dev"
|
|
756
|
-
source: hosted
|
|
757
|
-
version: "1.4.0"
|
|
758
|
-
universal_platform:
|
|
759
|
-
dependency: transitive
|
|
760
|
-
description:
|
|
761
|
-
name: universal_platform
|
|
762
|
-
sha256: "64e16458a0ea9b99260ceb5467a214c1f298d647c659af1bff6d3bf82536b1ec"
|
|
763
|
-
url: "https://pub.dev"
|
|
764
|
-
source: hosted
|
|
765
|
-
version: "1.1.0"
|
|
766
|
-
uri_parser:
|
|
767
|
-
dependency: transitive
|
|
768
|
-
description:
|
|
769
|
-
name: uri_parser
|
|
770
|
-
sha256: ff4d2c720aca3f4f7d5445e23b11b2d15ef8af5ddce5164643f38ff962dcb270
|
|
771
|
-
url: "https://pub.dev"
|
|
772
|
-
source: hosted
|
|
773
|
-
version: "3.0.0"
|
|
774
|
-
url_launcher:
|
|
775
|
-
dependency: transitive
|
|
776
|
-
description:
|
|
777
|
-
name: url_launcher
|
|
778
|
-
sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603"
|
|
779
|
-
url: "https://pub.dev"
|
|
780
|
-
source: hosted
|
|
781
|
-
version: "6.3.1"
|
|
782
|
-
url_launcher_android:
|
|
783
|
-
dependency: transitive
|
|
784
|
-
description:
|
|
785
|
-
name: url_launcher_android
|
|
786
|
-
sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
|
|
787
|
-
url: "https://pub.dev"
|
|
788
|
-
source: hosted
|
|
789
|
-
version: "6.3.17"
|
|
790
|
-
url_launcher_ios:
|
|
791
|
-
dependency: transitive
|
|
792
|
-
description:
|
|
793
|
-
name: url_launcher_ios
|
|
794
|
-
sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
|
|
795
|
-
url: "https://pub.dev"
|
|
796
|
-
source: hosted
|
|
797
|
-
version: "6.3.4"
|
|
798
|
-
url_launcher_linux:
|
|
799
|
-
dependency: transitive
|
|
800
|
-
description:
|
|
801
|
-
name: url_launcher_linux
|
|
802
|
-
sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935"
|
|
803
|
-
url: "https://pub.dev"
|
|
804
|
-
source: hosted
|
|
805
|
-
version: "3.2.1"
|
|
806
|
-
url_launcher_macos:
|
|
807
|
-
dependency: transitive
|
|
808
|
-
description:
|
|
809
|
-
name: url_launcher_macos
|
|
810
|
-
sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
|
|
811
|
-
url: "https://pub.dev"
|
|
812
|
-
source: hosted
|
|
813
|
-
version: "3.2.3"
|
|
814
|
-
url_launcher_platform_interface:
|
|
815
|
-
dependency: transitive
|
|
816
|
-
description:
|
|
817
|
-
name: url_launcher_platform_interface
|
|
818
|
-
sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029"
|
|
819
|
-
url: "https://pub.dev"
|
|
820
|
-
source: hosted
|
|
821
|
-
version: "2.3.2"
|
|
822
|
-
url_launcher_web:
|
|
823
|
-
dependency: transitive
|
|
824
|
-
description:
|
|
825
|
-
name: url_launcher_web
|
|
826
|
-
sha256: "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2"
|
|
827
|
-
url: "https://pub.dev"
|
|
828
|
-
source: hosted
|
|
829
|
-
version: "2.4.1"
|
|
830
|
-
url_launcher_windows:
|
|
831
|
-
dependency: transitive
|
|
832
|
-
description:
|
|
833
|
-
name: url_launcher_windows
|
|
834
|
-
sha256: "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77"
|
|
835
|
-
url: "https://pub.dev"
|
|
836
|
-
source: hosted
|
|
837
|
-
version: "3.1.4"
|
|
838
|
-
uuid:
|
|
839
|
-
dependency: transitive
|
|
840
|
-
description:
|
|
841
|
-
name: uuid
|
|
842
|
-
sha256: a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff
|
|
843
|
-
url: "https://pub.dev"
|
|
844
|
-
source: hosted
|
|
845
|
-
version: "4.5.1"
|
|
846
|
-
vector_graphics:
|
|
847
|
-
dependency: transitive
|
|
848
|
-
description:
|
|
849
|
-
name: vector_graphics
|
|
850
|
-
sha256: a4f059dc26fc8295b5921376600a194c4ec7d55e72f2fe4c7d2831e103d461e6
|
|
851
|
-
url: "https://pub.dev"
|
|
852
|
-
source: hosted
|
|
853
|
-
version: "1.1.19"
|
|
854
|
-
vector_graphics_codec:
|
|
855
|
-
dependency: transitive
|
|
856
|
-
description:
|
|
857
|
-
name: vector_graphics_codec
|
|
858
|
-
sha256: "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146"
|
|
859
|
-
url: "https://pub.dev"
|
|
860
|
-
source: hosted
|
|
861
|
-
version: "1.1.13"
|
|
862
|
-
vector_graphics_compiler:
|
|
863
|
-
dependency: transitive
|
|
864
|
-
description:
|
|
865
|
-
name: vector_graphics_compiler
|
|
866
|
-
sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
|
|
867
|
-
url: "https://pub.dev"
|
|
868
|
-
source: hosted
|
|
869
|
-
version: "1.1.18"
|
|
870
|
-
vector_math:
|
|
871
|
-
dependency: transitive
|
|
872
|
-
description:
|
|
873
|
-
name: vector_math
|
|
874
|
-
sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
|
|
875
|
-
url: "https://pub.dev"
|
|
876
|
-
source: hosted
|
|
877
|
-
version: "2.2.0"
|
|
878
|
-
vm_service:
|
|
879
|
-
dependency: transitive
|
|
880
|
-
description:
|
|
881
|
-
name: vm_service
|
|
882
|
-
sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
|
|
883
|
-
url: "https://pub.dev"
|
|
884
|
-
source: hosted
|
|
885
|
-
version: "15.0.2"
|
|
886
|
-
volume_controller:
|
|
887
|
-
dependency: transitive
|
|
888
|
-
description:
|
|
889
|
-
name: volume_controller
|
|
890
|
-
sha256: d75039e69c0d90e7810bfd47e3eedf29ff8543ea7a10392792e81f9bded7edf5
|
|
891
|
-
url: "https://pub.dev"
|
|
892
|
-
source: hosted
|
|
893
|
-
version: "3.4.0"
|
|
894
|
-
wakelock_plus:
|
|
895
|
-
dependency: transitive
|
|
896
|
-
description:
|
|
897
|
-
name: wakelock_plus
|
|
898
|
-
sha256: a474e314c3e8fb5adef1f9ae2d247e57467ad557fa7483a2b895bc1b421c5678
|
|
899
|
-
url: "https://pub.dev"
|
|
900
|
-
source: hosted
|
|
901
|
-
version: "1.3.2"
|
|
902
|
-
wakelock_plus_platform_interface:
|
|
903
|
-
dependency: transitive
|
|
904
|
-
description:
|
|
905
|
-
name: wakelock_plus_platform_interface
|
|
906
|
-
sha256: e10444072e50dbc4999d7316fd303f7ea53d31c824aa5eb05d7ccbdd98985207
|
|
907
|
-
url: "https://pub.dev"
|
|
908
|
-
source: hosted
|
|
909
|
-
version: "1.2.3"
|
|
910
|
-
web:
|
|
911
|
-
dependency: transitive
|
|
912
|
-
description:
|
|
913
|
-
name: web
|
|
914
|
-
sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
|
|
915
|
-
url: "https://pub.dev"
|
|
916
|
-
source: hosted
|
|
917
|
-
version: "1.1.1"
|
|
918
|
-
web_socket:
|
|
919
|
-
dependency: transitive
|
|
920
|
-
description:
|
|
921
|
-
name: web_socket
|
|
922
|
-
sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
|
|
923
|
-
url: "https://pub.dev"
|
|
924
|
-
source: hosted
|
|
925
|
-
version: "1.0.1"
|
|
926
|
-
web_socket_channel:
|
|
927
|
-
dependency: transitive
|
|
928
|
-
description:
|
|
929
|
-
name: web_socket_channel
|
|
930
|
-
sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
|
|
931
|
-
url: "https://pub.dev"
|
|
932
|
-
source: hosted
|
|
933
|
-
version: "3.0.3"
|
|
934
|
-
win32:
|
|
935
|
-
dependency: transitive
|
|
936
|
-
description:
|
|
937
|
-
name: win32
|
|
938
|
-
sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
|
|
939
|
-
url: "https://pub.dev"
|
|
940
|
-
source: hosted
|
|
941
|
-
version: "5.14.0"
|
|
942
|
-
win32_registry:
|
|
943
|
-
dependency: transitive
|
|
944
|
-
description:
|
|
945
|
-
name: win32_registry
|
|
946
|
-
sha256: "6f1b564492d0147b330dd794fee8f512cec4977957f310f9951b5f9d83618dae"
|
|
947
|
-
url: "https://pub.dev"
|
|
948
|
-
source: hosted
|
|
949
|
-
version: "2.1.0"
|
|
950
|
-
window_manager:
|
|
951
|
-
dependency: transitive
|
|
952
|
-
description:
|
|
953
|
-
name: window_manager
|
|
954
|
-
sha256: "7eb6d6c4164ec08e1bf978d6e733f3cebe792e2a23fb07cbca25c2872bfdbdcd"
|
|
955
|
-
url: "https://pub.dev"
|
|
956
|
-
source: hosted
|
|
957
|
-
version: "0.5.1"
|
|
958
|
-
window_to_front:
|
|
959
|
-
dependency: transitive
|
|
960
|
-
description:
|
|
961
|
-
name: window_to_front
|
|
962
|
-
sha256: "7aef379752b7190c10479e12b5fd7c0b9d92adc96817d9e96c59937929512aee"
|
|
963
|
-
url: "https://pub.dev"
|
|
964
|
-
source: hosted
|
|
965
|
-
version: "0.0.3"
|
|
966
|
-
xdg_directories:
|
|
967
|
-
dependency: transitive
|
|
968
|
-
description:
|
|
969
|
-
name: xdg_directories
|
|
970
|
-
sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
|
|
971
|
-
url: "https://pub.dev"
|
|
972
|
-
source: hosted
|
|
973
|
-
version: "1.1.0"
|
|
974
|
-
xml:
|
|
975
|
-
dependency: transitive
|
|
976
|
-
description:
|
|
977
|
-
name: xml
|
|
978
|
-
sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226
|
|
979
|
-
url: "https://pub.dev"
|
|
980
|
-
source: hosted
|
|
981
|
-
version: "6.5.0"
|
|
982
|
-
sdks:
|
|
983
|
-
dart: ">=3.8.0 <4.0.0"
|
|
984
|
-
flutter: ">=3.29.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|