flet-audio-recorder 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.
@@ -22,10 +22,6 @@ class AudioRecorder(ft.Service):
22
22
  audio encoders and also allows configuration
23
23
  of various audio recording parameters such as
24
24
  noise suppression, echo cancellation, and more.
25
-
26
- Note:
27
- This control is non-visual and should be added to
28
- [`Page.services`][flet.Page.services] list before it can be used.
29
25
  """
30
26
 
31
27
  configuration: AudioRecorderConfiguration = field(
@@ -44,7 +40,6 @@ class AudioRecorder(ft.Service):
44
40
  self,
45
41
  output_path: Optional[str] = None,
46
42
  configuration: Optional[AudioRecorderConfiguration] = None,
47
- timeout: Optional[float] = 10,
48
43
  ) -> bool:
49
44
  """
50
45
  Starts recording audio and saves it to the specified output path.
@@ -56,13 +51,9 @@ class AudioRecorder(ft.Service):
56
51
  It must be specified if not on web.
57
52
  configuration: The configuration for the audio recorder.
58
53
  If `None`, the `AudioRecorder.configuration` will be used.
59
- timeout: The maximum amount of time (in seconds) to wait for a response.
60
54
 
61
55
  Returns:
62
56
  `True` if recording was successfully started, `False` otherwise.
63
-
64
- Raises:
65
- TimeoutError: If the request times out.
66
57
  """
67
58
  assert self.page.web or output_path, (
68
59
  "output_path must be provided on platforms other than web"
@@ -75,141 +66,82 @@ class AudioRecorder(ft.Service):
75
66
  if configuration is not None
76
67
  else self.configuration,
77
68
  },
78
- timeout=timeout,
79
69
  )
80
70
 
81
- async def is_recording(self, timeout: Optional[float] = 10) -> bool:
71
+ async def is_recording(self) -> bool:
82
72
  """
83
73
  Checks whether the audio recorder is currently recording.
84
74
 
85
- Args:
86
- timeout: The maximum amount of time (in seconds) to wait for a response.
87
-
88
75
  Returns:
89
76
  `True` if the recorder is currently recording, `False` otherwise.
90
-
91
- Raises:
92
- TimeoutError: If the request times out.
93
77
  """
94
- return await self._invoke_method("is_recording", timeout=timeout)
78
+ return await self._invoke_method("is_recording")
95
79
 
96
- async def stop_recording(self, timeout: Optional[float] = 10) -> Optional[str]:
80
+ async def stop_recording(self) -> Optional[str]:
97
81
  """
98
82
  Stops the audio recording and optionally returns the path to the saved file.
99
83
 
100
- Args:
101
- timeout: The maximum amount of time (in seconds) to wait for a response.
102
-
103
84
  Returns:
104
85
  The file path where the audio was saved or `None` if not applicable.
105
-
106
- Raises:
107
- TimeoutError: If the request times out.
108
86
  """
109
- return await self._invoke_method("stop_recording", timeout=timeout)
87
+ return await self._invoke_method("stop_recording")
110
88
 
111
- async def cancel_recording(self, timeout: Optional[float] = 10):
89
+ async def cancel_recording(self):
112
90
  """
113
91
  Cancels the current audio recording.
114
-
115
- Args:
116
- timeout: The maximum amount of time (in seconds) to wait for a response.
117
-
118
- Raises:
119
- TimeoutError: If the request times out.
120
92
  """
121
- await self._invoke_method("cancel_recording", timeout=timeout)
93
+ await self._invoke_method("cancel_recording")
122
94
 
123
- async def resume_recording(self, timeout: Optional[float] = 10):
95
+ async def resume_recording(self):
124
96
  """
125
97
  Resumes a paused audio recording.
126
-
127
- Args:
128
- timeout: The maximum amount of time (in seconds) to wait for a response.
129
-
130
- Raises:
131
- TimeoutError: If the request times out.
132
98
  """
133
- await self._invoke_method("resume_recording", timeout=timeout)
99
+ await self._invoke_method("resume_recording")
134
100
 
135
- async def pause_recording(self, timeout: Optional[float] = 10):
101
+ async def pause_recording(self):
136
102
  """
137
103
  Pauses the ongoing audio recording.
138
-
139
- Args:
140
- timeout: The maximum amount of time (in seconds) to wait for a response.
141
-
142
- Raises:
143
- TimeoutError: If the request times out.
144
104
  """
145
- await self._invoke_method("pause_recording", timeout=timeout)
105
+ await self._invoke_method("pause_recording")
146
106
 
147
- async def is_paused(self, timeout: Optional[float] = 10) -> bool:
107
+ async def is_paused(self) -> bool:
148
108
  """
149
109
  Checks whether the audio recorder is currently paused.
150
110
 
151
- Args:
152
- timeout: The maximum amount of time (in seconds) to wait for a response.
153
-
154
111
  Returns:
155
112
  `True` if the recorder is paused, `False` otherwise.
156
-
157
- Raises:
158
- TimeoutError: If the request times out.
159
113
  """
160
- return await self._invoke_method("is_paused", timeout=timeout)
114
+ return await self._invoke_method("is_paused")
161
115
 
162
- async def is_supported_encoder(
163
- self, encoder: AudioEncoder, timeout: Optional[float] = 10
164
- ) -> bool:
116
+ async def is_supported_encoder(self, encoder: AudioEncoder) -> bool:
165
117
  """
166
118
  Checks if the given audio encoder is supported by the recorder.
167
119
 
168
120
  Args:
169
121
  encoder: The audio encoder to check.
170
- timeout: The maximum amount of time (in seconds) to wait for a response.
171
122
 
172
123
  Returns:
173
124
  `True` if the encoder is supported, `False` otherwise.
174
-
175
- Raises:
176
- TimeoutError: If the request times out.
177
125
  """
178
- return await self._invoke_method(
179
- "is_supported_encoder", {"encoder": encoder}, timeout=timeout
180
- )
126
+ return await self._invoke_method("is_supported_encoder", {"encoder": encoder})
181
127
 
182
- async def get_input_devices(
183
- self, timeout: Optional[float] = 10
184
- ) -> list[InputDevice]:
128
+ async def get_input_devices(self) -> list[InputDevice]:
185
129
  """
186
130
  Retrieves the available input devices for recording.
187
131
 
188
- Args:
189
- timeout: The maximum amount of time (in seconds) to wait for a response.
190
-
191
132
  Returns:
192
133
  A list of available input devices.
193
-
194
- Raises:
195
- TimeoutError: If the request times out.
196
134
  """
197
- r = await self._invoke_method("get_input_devices", timeout=timeout)
135
+ r = await self._invoke_method("get_input_devices")
198
136
  return [
199
137
  InputDevice(id=device_id, label=label) for device_id, label in r.items()
200
138
  ]
201
139
 
202
- async def has_permission(self, timeout: Optional[float] = 10) -> bool:
140
+ async def has_permission(self) -> bool:
203
141
  """
204
142
  Checks if the app has permission to record audio.
205
143
 
206
- Args:
207
- timeout: The maximum amount of time (in seconds) to wait for a response.
208
-
209
144
  Returns:
210
145
  `True` if the app has permission, `False` otherwise.
211
-
212
- Raises:
213
- TimeoutError: If the request times out.
214
146
  """
215
- return await self._invoke_method("has_permission", timeout=timeout)
147
+ return await self._invoke_method("has_permission")
@@ -1,24 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-audio-recorder
3
- Version: 0.2.0.dev504
3
+ Version: 0.70.0.dev6293
4
4
  Summary: Adds audio recording support to Flet apps.
5
5
  Author-email: Flet contributors <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
7
7
  Project-URL: Homepage, https://flet.dev
8
- Project-URL: Documentation, https://flet-dev.github.io/flet-audio-recorder
9
- Project-URL: Repository, https://github.com/flet-dev/flet-audio-recorder
10
- Project-URL: Issues, https://github.com/flet-dev/flet-audio-recorder/issues
8
+ Project-URL: Documentation, https://docs.flet.dev/audio-recorder
9
+ Project-URL: Repository, https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-audio-recorder
10
+ Project-URL: Issues, https://github.com/flet-dev/flet/issues
11
11
  Requires-Python: >=3.10
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
- Requires-Dist: flet>=0.70.0.dev0
14
+ Requires-Dist: flet==0.70.0.dev6293
15
15
  Dynamic: license-file
16
16
 
17
17
  # flet-audio-recorder
18
18
 
19
19
  [![pypi](https://img.shields.io/pypi/v/flet-audio-recorder.svg)](https://pypi.python.org/pypi/flet-audio-recorder)
20
20
  [![downloads](https://static.pepy.tech/badge/flet-audio-recorder/month)](https://pepy.tech/project/flet-audio-recorder)
21
- [![license](https://img.shields.io/github/license/flet-dev/flet-audio-recorder.svg)](https://github.com/flet-dev/flet-audio-recorder/blob/main/LICENSE)
21
+ [![license](https://img.shields.io/github/license/flet-dev/flet.svg)](https://github.com/flet-dev/flet/blob/main/sdk/python/packages/flet-audio-recorder/LICENSE)
22
22
 
23
23
  Adds audio recording support to [Flet](https://flet.dev) apps.
24
24
 
@@ -26,20 +26,13 @@ It is based on the [record](https://pub.dev/packages/record) Flutter package.
26
26
 
27
27
  ## Documentation
28
28
 
29
- Detailed documentation to this package can be found [here](https://flet-dev.github.io/flet-audio-recorder/).
29
+ Detailed documentation to this package can be found [here](https://docs.flet.dev/audio-recorder/).
30
30
 
31
31
  ## Platform Support
32
32
 
33
- This package supports the following platforms:
34
-
35
- | Platform | Supported |
36
- |----------|:---------:|
37
- | Windows | ✅ |
38
- | macOS | ✅ |
39
- | Linux | ✅ |
40
- | iOS | ✅ |
41
- | Android | ✅ |
42
- | Web | ✅ |
33
+ | Platform | Windows | macOS | Linux | iOS | Android | Web |
34
+ |----------|---------|-------|-------|-----|---------|-----|
35
+ | Supported| ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
43
36
 
44
37
  ## Usage
45
38
 
@@ -58,14 +51,10 @@ To install the `flet-audio-recorder` package and add it to your project dependen
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-audio-recorder
64
- ```
65
54
 
66
55
  > [!NOTE]
67
56
  > On Linux, encoding is provided by [fmedia](https://stsaz.github.io/fmedia/) which must be installed separately.
68
57
 
69
58
  ### Examples
70
59
 
71
- For examples, see [these](./examples).
60
+ For examples, see [these](https://github.com/flet-dev/flet/tree/main/sdk/python/examples/controls/audio_recorder).
@@ -0,0 +1,17 @@
1
+ flet_audio_recorder/__init__.py,sha256=oAvNVxOwS2x1gSk7I4rZBO-AmJK2yOFNux0j2R4zdbM,603
2
+ flet_audio_recorder/audio_recorder.py,sha256=-oNE2WSqG62sF4KwsOjrpgZ9DnWEnAm-kKVWe2lsSzY,4518
3
+ flet_audio_recorder/types.py,sha256=EL1MPfsJIcDpf_lTMgjnXCBrLyQX_K-LdNfHakf0Aso,8696
4
+ flet_audio_recorder-0.70.0.dev6293.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
5
+ flutter/flet_audio_recorder/CHANGELOG.md,sha256=aGMFZgw4TRV4kPRoujIXoN4zw6r5jWaUXdbP1B3KEtg,41
6
+ flutter/flet_audio_recorder/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
7
+ flutter/flet_audio_recorder/README.md,sha256=_G2Yf2LmxFI-iuD-5LkvaUPdKQB0OcuE4ksbuzQ-Q8k,77
8
+ flutter/flet_audio_recorder/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
9
+ flutter/flet_audio_recorder/pubspec.yaml,sha256=8v2Okz1JGbmLmooOm545zRQ33mc0D32Zxq-mZFSqtYE,370
10
+ flutter/flet_audio_recorder/lib/flet_audio_recorder.dart,sha256=x-KG1v-Qb_AiSyH9Y2Jt9PIYPxl_mQjXeIg_BDEQ0iQ,65
11
+ flutter/flet_audio_recorder/lib/src/audio_recorder.dart,sha256=IfTcKQgG7CYgSe8Rte4byeAXq550uFpWB2OKxFy2AGc,2776
12
+ flutter/flet_audio_recorder/lib/src/extension.dart,sha256=cmay1aBCZjTypBIxLzCnvJksP_rjbqMnWrnF5i-Gvfo,324
13
+ flutter/flet_audio_recorder/lib/src/utils/audio_recorder.dart,sha256=E2qc2hYv1qiIokffIV2rLP-4Q9X0Bv-Pr3lZsHQCbGo,2824
14
+ flet_audio_recorder-0.70.0.dev6293.dist-info/METADATA,sha256=MWYmfRvp3iC56FQozPyfu1vZi35R456NTaG97TPX7Y0,2137
15
+ flet_audio_recorder-0.70.0.dev6293.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
16
+ flet_audio_recorder-0.70.0.dev6293.dist-info/top_level.txt,sha256=fi4uOe4C7Pitw9OIzx7l0TgjkYomndtLYrQg8mjD-iA,28
17
+ flet_audio_recorder-0.70.0.dev6293.dist-info/RECORD,,
@@ -1,3 +1,3 @@
1
1
  # 0.1.0
2
2
 
3
- Initial release of the package.
3
+ Initial release of the package.
@@ -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.
@@ -1,3 +1,3 @@
1
1
  # Flet `AudioRecorder` control
2
2
 
3
- `AudioRecorder` control to use in Flet apps.
3
+ `AudioRecorder` control to use in Flet apps.
@@ -1,22 +1,22 @@
1
1
  name: flet_audio_recorder
2
2
  description: Flet AudioRecorder control
3
- homepage: https://flet.dev
4
- repository: https://github.com/flet-dev/flet-audio-recorder/src/flutter/flet_audio_recorder
5
- version: 0.2.0
3
+ version: 0.1.0
6
4
  publish_to: none
5
+
7
6
  environment:
8
7
  sdk: '>=3.2.3 <4.0.0'
9
- flutter: '>=1.17.0'
8
+ flutter: ">=1.17.0"
9
+
10
10
  dependencies:
11
11
  flutter:
12
12
  sdk: flutter
13
+
13
14
  collection: ^1.16.0
14
- record: 6.0.0
15
+ record: 6.1.2
16
+
15
17
  flet:
16
- git:
17
- url: https://github.com/flet-dev/flet.git
18
- path: packages/flet
19
- ref: main
18
+ path: ../../../../../../../packages/flet
19
+
20
20
  dev_dependencies:
21
21
  flutter_test:
22
22
  sdk: flutter
@@ -1,18 +0,0 @@
1
- flet_audio_recorder/__init__.py,sha256=oAvNVxOwS2x1gSk7I4rZBO-AmJK2yOFNux0j2R4zdbM,603
2
- flet_audio_recorder/audio_recorder.py,sha256=JUldoteWWGAObc0JlT-5BKrNp-ZOspxLFG4meoYp_QI,6875
3
- flet_audio_recorder/types.py,sha256=EL1MPfsJIcDpf_lTMgjnXCBrLyQX_K-LdNfHakf0Aso,8696
4
- flet_audio_recorder-0.2.0.dev504.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
5
- flutter/flet_audio_recorder/CHANGELOG.md,sha256=66sWepPaeTc9_lzcYIGU55AlxSU5Z1XVtknXpzd_-p8,40
6
- flutter/flet_audio_recorder/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
7
- flutter/flet_audio_recorder/README.md,sha256=KcVP2UEKbA9P0r3i2GimRFFLwOqV3Az_7IjZYEXhd8w,76
8
- flutter/flet_audio_recorder/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
9
- flutter/flet_audio_recorder/pubspec.lock,sha256=KuPwKic-Y9Z4crbRdY0msqWputGhntZZJyPxBCIMo_4,25841
10
- flutter/flet_audio_recorder/pubspec.yaml,sha256=604ZbToAyl_fE4y0gTzQhiIs5uL_o2tKTJX0JCMA40Q,538
11
- flutter/flet_audio_recorder/lib/flet_audio_recorder.dart,sha256=x-KG1v-Qb_AiSyH9Y2Jt9PIYPxl_mQjXeIg_BDEQ0iQ,65
12
- flutter/flet_audio_recorder/lib/src/audio_recorder.dart,sha256=IfTcKQgG7CYgSe8Rte4byeAXq550uFpWB2OKxFy2AGc,2776
13
- flutter/flet_audio_recorder/lib/src/extension.dart,sha256=cmay1aBCZjTypBIxLzCnvJksP_rjbqMnWrnF5i-Gvfo,324
14
- flutter/flet_audio_recorder/lib/src/utils/audio_recorder.dart,sha256=E2qc2hYv1qiIokffIV2rLP-4Q9X0Bv-Pr3lZsHQCbGo,2824
15
- flet_audio_recorder-0.2.0.dev504.dist-info/METADATA,sha256=684GhR9WkjxWxe_V6MlEBPtSIj6T5blC8na2NQWDRsU,2184
16
- flet_audio_recorder-0.2.0.dev504.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- flet_audio_recorder-0.2.0.dev504.dist-info/top_level.txt,sha256=fi4uOe4C7Pitw9OIzx7l0TgjkYomndtLYrQg8mjD-iA,28
18
- flet_audio_recorder-0.2.0.dev504.dist-info/RECORD,,
@@ -1,872 +0,0 @@
1
- # Generated by pub
2
- # See https://dart.dev/tools/pub/glossary#lockfile
3
- packages:
4
- args:
5
- dependency: transitive
6
- description:
7
- name: args
8
- sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04
9
- url: "https://pub.dev"
10
- source: hosted
11
- version: "2.7.0"
12
- async:
13
- dependency: transitive
14
- description:
15
- name: async
16
- sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
17
- url: "https://pub.dev"
18
- source: hosted
19
- version: "2.13.0"
20
- boolean_selector:
21
- dependency: transitive
22
- description:
23
- name: boolean_selector
24
- sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
25
- url: "https://pub.dev"
26
- source: hosted
27
- version: "2.1.2"
28
- characters:
29
- dependency: transitive
30
- description:
31
- name: characters
32
- sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803
33
- url: "https://pub.dev"
34
- source: hosted
35
- version: "1.4.0"
36
- clock:
37
- dependency: transitive
38
- description:
39
- name: clock
40
- sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
41
- url: "https://pub.dev"
42
- source: hosted
43
- version: "1.1.2"
44
- collection:
45
- dependency: "direct main"
46
- description:
47
- name: collection
48
- sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
49
- url: "https://pub.dev"
50
- source: hosted
51
- version: "1.19.1"
52
- cross_file:
53
- dependency: transitive
54
- description:
55
- name: cross_file
56
- sha256: "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670"
57
- url: "https://pub.dev"
58
- source: hosted
59
- version: "0.3.4+2"
60
- crypto:
61
- dependency: transitive
62
- description:
63
- name: crypto
64
- sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
65
- url: "https://pub.dev"
66
- source: hosted
67
- version: "3.0.6"
68
- dbus:
69
- dependency: transitive
70
- description:
71
- name: dbus
72
- sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c"
73
- url: "https://pub.dev"
74
- source: hosted
75
- version: "0.7.11"
76
- device_info_plus:
77
- dependency: transitive
78
- description:
79
- name: device_info_plus
80
- sha256: "98f28b42168cc509abc92f88518882fd58061ea372d7999aecc424345c7bff6a"
81
- url: "https://pub.dev"
82
- source: hosted
83
- version: "11.5.0"
84
- device_info_plus_platform_interface:
85
- dependency: transitive
86
- description:
87
- name: device_info_plus_platform_interface
88
- sha256: e1ea89119e34903dca74b883d0dd78eb762814f97fb6c76f35e9ff74d261a18f
89
- url: "https://pub.dev"
90
- source: hosted
91
- version: "7.0.3"
92
- equatable:
93
- dependency: transitive
94
- description:
95
- name: equatable
96
- sha256: "567c64b3cb4cf82397aac55f4f0cbd3ca20d77c6c03bedbc4ceaddc08904aef7"
97
- url: "https://pub.dev"
98
- source: hosted
99
- version: "2.0.7"
100
- fake_async:
101
- dependency: transitive
102
- description:
103
- name: fake_async
104
- sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
105
- url: "https://pub.dev"
106
- source: hosted
107
- version: "1.3.3"
108
- ffi:
109
- dependency: transitive
110
- description:
111
- name: ffi
112
- sha256: "289279317b4b16eb2bb7e271abccd4bf84ec9bdcbe999e278a94b804f5630418"
113
- url: "https://pub.dev"
114
- source: hosted
115
- version: "2.1.4"
116
- file:
117
- dependency: transitive
118
- description:
119
- name: file
120
- sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
121
- url: "https://pub.dev"
122
- source: hosted
123
- version: "7.0.1"
124
- file_picker:
125
- dependency: transitive
126
- description:
127
- name: file_picker
128
- sha256: e7e16c9d15c36330b94ca0e2ad8cb61f93cd5282d0158c09805aed13b5452f22
129
- url: "https://pub.dev"
130
- source: hosted
131
- version: "10.3.2"
132
- fixnum:
133
- dependency: transitive
134
- description:
135
- name: fixnum
136
- sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
137
- url: "https://pub.dev"
138
- source: hosted
139
- version: "1.1.1"
140
- flet:
141
- dependency: "direct main"
142
- description:
143
- path: "packages/flet"
144
- ref: main
145
- resolved-ref: "27cea68736639eff49200813838bba3b2bd4e2b0"
146
- url: "https://github.com/flet-dev/flet.git"
147
- source: git
148
- version: "0.70.0"
149
- flutter:
150
- dependency: "direct main"
151
- description: flutter
152
- source: sdk
153
- version: "0.0.0"
154
- flutter_highlight:
155
- dependency: transitive
156
- description:
157
- name: flutter_highlight
158
- sha256: "7b96333867aa07e122e245c033b8ad622e4e3a42a1a2372cbb098a2541d8782c"
159
- url: "https://pub.dev"
160
- source: hosted
161
- version: "0.7.0"
162
- flutter_lints:
163
- dependency: "direct dev"
164
- description:
165
- name: flutter_lints
166
- sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
167
- url: "https://pub.dev"
168
- source: hosted
169
- version: "3.0.2"
170
- flutter_localizations:
171
- dependency: transitive
172
- description: flutter
173
- source: sdk
174
- version: "0.0.0"
175
- flutter_markdown:
176
- dependency: transitive
177
- description:
178
- name: flutter_markdown
179
- sha256: e7bbc718adc9476aa14cfddc1ef048d2e21e4e8f18311aaac723266db9f9e7b5
180
- url: "https://pub.dev"
181
- source: hosted
182
- version: "0.7.6+2"
183
- flutter_plugin_android_lifecycle:
184
- dependency: transitive
185
- description:
186
- name: flutter_plugin_android_lifecycle
187
- sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
188
- url: "https://pub.dev"
189
- source: hosted
190
- version: "2.0.29"
191
- flutter_svg:
192
- dependency: transitive
193
- description:
194
- name: flutter_svg
195
- sha256: d44bf546b13025ec7353091516f6881f1d4c633993cb109c3916c3a0159dadf1
196
- url: "https://pub.dev"
197
- source: hosted
198
- version: "2.1.0"
199
- flutter_test:
200
- dependency: "direct dev"
201
- description: flutter
202
- source: sdk
203
- version: "0.0.0"
204
- flutter_web_plugins:
205
- dependency: transitive
206
- description: flutter
207
- source: sdk
208
- version: "0.0.0"
209
- highlight:
210
- dependency: transitive
211
- description:
212
- name: highlight
213
- sha256: "5353a83ffe3e3eca7df0abfb72dcf3fa66cc56b953728e7113ad4ad88497cf21"
214
- url: "https://pub.dev"
215
- source: hosted
216
- version: "0.7.0"
217
- http:
218
- dependency: transitive
219
- description:
220
- name: http
221
- sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
222
- url: "https://pub.dev"
223
- source: hosted
224
- version: "1.3.0"
225
- http_parser:
226
- dependency: transitive
227
- description:
228
- name: http_parser
229
- sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
230
- url: "https://pub.dev"
231
- source: hosted
232
- version: "4.1.2"
233
- intl:
234
- dependency: transitive
235
- description:
236
- name: intl
237
- sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
238
- url: "https://pub.dev"
239
- source: hosted
240
- version: "0.20.2"
241
- json_annotation:
242
- dependency: transitive
243
- description:
244
- name: json_annotation
245
- sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
246
- url: "https://pub.dev"
247
- source: hosted
248
- version: "4.9.0"
249
- leak_tracker:
250
- dependency: transitive
251
- description:
252
- name: leak_tracker
253
- sha256: "8dcda04c3fc16c14f48a7bb586d4be1f0d1572731b6d81d51772ef47c02081e0"
254
- url: "https://pub.dev"
255
- source: hosted
256
- version: "11.0.1"
257
- leak_tracker_flutter_testing:
258
- dependency: transitive
259
- description:
260
- name: leak_tracker_flutter_testing
261
- sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
262
- url: "https://pub.dev"
263
- source: hosted
264
- version: "3.0.10"
265
- leak_tracker_testing:
266
- dependency: transitive
267
- description:
268
- name: leak_tracker_testing
269
- sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
270
- url: "https://pub.dev"
271
- source: hosted
272
- version: "3.0.2"
273
- lints:
274
- dependency: transitive
275
- description:
276
- name: lints
277
- sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
278
- url: "https://pub.dev"
279
- source: hosted
280
- version: "3.0.0"
281
- logging:
282
- dependency: transitive
283
- description:
284
- name: logging
285
- sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
286
- url: "https://pub.dev"
287
- source: hosted
288
- version: "1.3.0"
289
- markdown:
290
- dependency: transitive
291
- description:
292
- name: markdown
293
- sha256: "935e23e1ff3bc02d390bad4d4be001208ee92cc217cb5b5a6c19bc14aaa318c1"
294
- url: "https://pub.dev"
295
- source: hosted
296
- version: "7.3.0"
297
- matcher:
298
- dependency: transitive
299
- description:
300
- name: matcher
301
- sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
302
- url: "https://pub.dev"
303
- source: hosted
304
- version: "0.12.17"
305
- material_color_utilities:
306
- dependency: transitive
307
- description:
308
- name: material_color_utilities
309
- sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
310
- url: "https://pub.dev"
311
- source: hosted
312
- version: "0.11.1"
313
- meta:
314
- dependency: transitive
315
- description:
316
- name: meta
317
- sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
318
- url: "https://pub.dev"
319
- source: hosted
320
- version: "1.16.0"
321
- msgpack_dart:
322
- dependency: transitive
323
- description:
324
- name: msgpack_dart
325
- sha256: c2d235ed01f364719b5296aecf43ac330f0d7bc865fa134d0d7910a40454dffb
326
- url: "https://pub.dev"
327
- source: hosted
328
- version: "1.0.1"
329
- nested:
330
- dependency: transitive
331
- description:
332
- name: nested
333
- sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
334
- url: "https://pub.dev"
335
- source: hosted
336
- version: "1.0.0"
337
- path:
338
- dependency: transitive
339
- description:
340
- name: path
341
- sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
342
- url: "https://pub.dev"
343
- source: hosted
344
- version: "1.9.1"
345
- path_parsing:
346
- dependency: transitive
347
- description:
348
- name: path_parsing
349
- sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca"
350
- url: "https://pub.dev"
351
- source: hosted
352
- version: "1.1.0"
353
- path_provider:
354
- dependency: transitive
355
- description:
356
- name: path_provider
357
- sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
358
- url: "https://pub.dev"
359
- source: hosted
360
- version: "2.1.5"
361
- path_provider_android:
362
- dependency: transitive
363
- description:
364
- name: path_provider_android
365
- sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9
366
- url: "https://pub.dev"
367
- source: hosted
368
- version: "2.2.17"
369
- path_provider_foundation:
370
- dependency: transitive
371
- description:
372
- name: path_provider_foundation
373
- sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
374
- url: "https://pub.dev"
375
- source: hosted
376
- version: "2.4.2"
377
- path_provider_linux:
378
- dependency: transitive
379
- description:
380
- name: path_provider_linux
381
- sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
382
- url: "https://pub.dev"
383
- source: hosted
384
- version: "2.2.1"
385
- path_provider_platform_interface:
386
- dependency: transitive
387
- description:
388
- name: path_provider_platform_interface
389
- sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
390
- url: "https://pub.dev"
391
- source: hosted
392
- version: "2.1.2"
393
- path_provider_windows:
394
- dependency: transitive
395
- description:
396
- name: path_provider_windows
397
- sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
398
- url: "https://pub.dev"
399
- source: hosted
400
- version: "2.3.0"
401
- petitparser:
402
- dependency: transitive
403
- description:
404
- name: petitparser
405
- sha256: "07c8f0b1913bcde1ff0d26e57ace2f3012ccbf2b204e070290dad3bb22797646"
406
- url: "https://pub.dev"
407
- source: hosted
408
- version: "6.1.0"
409
- platform:
410
- dependency: transitive
411
- description:
412
- name: platform
413
- sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
414
- url: "https://pub.dev"
415
- source: hosted
416
- version: "3.1.6"
417
- plugin_platform_interface:
418
- dependency: transitive
419
- description:
420
- name: plugin_platform_interface
421
- sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
422
- url: "https://pub.dev"
423
- source: hosted
424
- version: "2.1.8"
425
- provider:
426
- dependency: transitive
427
- description:
428
- name: provider
429
- sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272"
430
- url: "https://pub.dev"
431
- source: hosted
432
- version: "6.1.5+1"
433
- record:
434
- dependency: "direct main"
435
- description:
436
- name: record
437
- sha256: daeb3f9b3fea9797094433fe6e49a879d8e4ca4207740bc6dc7e4a58764f0817
438
- url: "https://pub.dev"
439
- source: hosted
440
- version: "6.0.0"
441
- record_android:
442
- dependency: transitive
443
- description:
444
- name: record_android
445
- sha256: "8361a791c9a3fa5c065f0b8b5adb10f12531f8538c86b19474cf7b56ea80d426"
446
- url: "https://pub.dev"
447
- source: hosted
448
- version: "1.4.1"
449
- record_ios:
450
- dependency: transitive
451
- description:
452
- name: record_ios
453
- sha256: "13e241ed9cbc220534a40ae6b66222e21288db364d96dd66fb762ebd3cb77c71"
454
- url: "https://pub.dev"
455
- source: hosted
456
- version: "1.1.2"
457
- record_linux:
458
- dependency: transitive
459
- description:
460
- name: record_linux
461
- sha256: "235b1f1fb84e810f8149cc0c2c731d7d697f8d1c333b32cb820c449bf7bb72d8"
462
- url: "https://pub.dev"
463
- source: hosted
464
- version: "1.2.1"
465
- record_macos:
466
- dependency: transitive
467
- description:
468
- name: record_macos
469
- sha256: "2849068bb59072f300ad63ed146e543d66afaef8263edba4de4834fc7c8d4d35"
470
- url: "https://pub.dev"
471
- source: hosted
472
- version: "1.1.1"
473
- record_platform_interface:
474
- dependency: transitive
475
- description:
476
- name: record_platform_interface
477
- sha256: b0065fdf1ec28f5a634d676724d388a77e43ce7646fb049949f58c69f3fcb4ed
478
- url: "https://pub.dev"
479
- source: hosted
480
- version: "1.4.0"
481
- record_web:
482
- dependency: transitive
483
- description:
484
- name: record_web
485
- sha256: "4f0adf20c9ccafcc02d71111fd91fba1ca7b17a7453902593e5a9b25b74a5c56"
486
- url: "https://pub.dev"
487
- source: hosted
488
- version: "1.2.0"
489
- record_windows:
490
- dependency: transitive
491
- description:
492
- name: record_windows
493
- sha256: "223258060a1d25c62bae18282c16783f28581ec19401d17e56b5205b9f039d78"
494
- url: "https://pub.dev"
495
- source: hosted
496
- version: "1.0.7"
497
- screen_retriever:
498
- dependency: transitive
499
- description:
500
- name: screen_retriever
501
- sha256: "570dbc8e4f70bac451e0efc9c9bb19fa2d6799a11e6ef04f946d7886d2e23d0c"
502
- url: "https://pub.dev"
503
- source: hosted
504
- version: "0.2.0"
505
- screen_retriever_linux:
506
- dependency: transitive
507
- description:
508
- name: screen_retriever_linux
509
- sha256: f7f8120c92ef0784e58491ab664d01efda79a922b025ff286e29aa123ea3dd18
510
- url: "https://pub.dev"
511
- source: hosted
512
- version: "0.2.0"
513
- screen_retriever_macos:
514
- dependency: transitive
515
- description:
516
- name: screen_retriever_macos
517
- sha256: "71f956e65c97315dd661d71f828708bd97b6d358e776f1a30d5aa7d22d78a149"
518
- url: "https://pub.dev"
519
- source: hosted
520
- version: "0.2.0"
521
- screen_retriever_platform_interface:
522
- dependency: transitive
523
- description:
524
- name: screen_retriever_platform_interface
525
- sha256: ee197f4581ff0d5608587819af40490748e1e39e648d7680ecf95c05197240c0
526
- url: "https://pub.dev"
527
- source: hosted
528
- version: "0.2.0"
529
- screen_retriever_windows:
530
- dependency: transitive
531
- description:
532
- name: screen_retriever_windows
533
- sha256: "449ee257f03ca98a57288ee526a301a430a344a161f9202b4fcc38576716fe13"
534
- url: "https://pub.dev"
535
- source: hosted
536
- version: "0.2.0"
537
- screenshot:
538
- dependency: transitive
539
- description:
540
- name: screenshot
541
- sha256: "63817697a7835e6ce82add4228e15d233b74d42975c143ad8cfe07009fab866b"
542
- url: "https://pub.dev"
543
- source: hosted
544
- version: "3.0.0"
545
- sensors_plus:
546
- dependency: transitive
547
- description:
548
- name: sensors_plus
549
- sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
550
- url: "https://pub.dev"
551
- source: hosted
552
- version: "6.1.2"
553
- sensors_plus_platform_interface:
554
- dependency: transitive
555
- description:
556
- name: sensors_plus_platform_interface
557
- sha256: "58815d2f5e46c0c41c40fb39375d3f127306f7742efe3b891c0b1c87e2b5cd5d"
558
- url: "https://pub.dev"
559
- source: hosted
560
- version: "2.0.1"
561
- shared_preferences:
562
- dependency: transitive
563
- description:
564
- name: shared_preferences
565
- sha256: "846849e3e9b68f3ef4b60c60cf4b3e02e9321bc7f4d8c4692cf87ffa82fc8a3a"
566
- url: "https://pub.dev"
567
- source: hosted
568
- version: "2.5.2"
569
- shared_preferences_android:
570
- dependency: transitive
571
- description:
572
- name: shared_preferences_android
573
- sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
574
- url: "https://pub.dev"
575
- source: hosted
576
- version: "2.4.11"
577
- shared_preferences_foundation:
578
- dependency: transitive
579
- description:
580
- name: shared_preferences_foundation
581
- sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
582
- url: "https://pub.dev"
583
- source: hosted
584
- version: "2.5.4"
585
- shared_preferences_linux:
586
- dependency: transitive
587
- description:
588
- name: shared_preferences_linux
589
- sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
590
- url: "https://pub.dev"
591
- source: hosted
592
- version: "2.4.1"
593
- shared_preferences_platform_interface:
594
- dependency: transitive
595
- description:
596
- name: shared_preferences_platform_interface
597
- sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
598
- url: "https://pub.dev"
599
- source: hosted
600
- version: "2.4.1"
601
- shared_preferences_web:
602
- dependency: transitive
603
- description:
604
- name: shared_preferences_web
605
- sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019
606
- url: "https://pub.dev"
607
- source: hosted
608
- version: "2.4.3"
609
- shared_preferences_windows:
610
- dependency: transitive
611
- description:
612
- name: shared_preferences_windows
613
- sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
614
- url: "https://pub.dev"
615
- source: hosted
616
- version: "2.4.1"
617
- sky_engine:
618
- dependency: transitive
619
- description: flutter
620
- source: sdk
621
- version: "0.0.0"
622
- source_span:
623
- dependency: transitive
624
- description:
625
- name: source_span
626
- sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
627
- url: "https://pub.dev"
628
- source: hosted
629
- version: "1.10.1"
630
- sprintf:
631
- dependency: transitive
632
- description:
633
- name: sprintf
634
- sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23"
635
- url: "https://pub.dev"
636
- source: hosted
637
- version: "7.0.0"
638
- stack_trace:
639
- dependency: transitive
640
- description:
641
- name: stack_trace
642
- sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
643
- url: "https://pub.dev"
644
- source: hosted
645
- version: "1.12.1"
646
- stream_channel:
647
- dependency: transitive
648
- description:
649
- name: stream_channel
650
- sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
651
- url: "https://pub.dev"
652
- source: hosted
653
- version: "2.1.4"
654
- string_scanner:
655
- dependency: transitive
656
- description:
657
- name: string_scanner
658
- sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
659
- url: "https://pub.dev"
660
- source: hosted
661
- version: "1.4.1"
662
- term_glyph:
663
- dependency: transitive
664
- description:
665
- name: term_glyph
666
- sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
667
- url: "https://pub.dev"
668
- source: hosted
669
- version: "1.2.2"
670
- test_api:
671
- dependency: transitive
672
- description:
673
- name: test_api
674
- sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
675
- url: "https://pub.dev"
676
- source: hosted
677
- version: "0.7.6"
678
- typed_data:
679
- dependency: transitive
680
- description:
681
- name: typed_data
682
- sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
683
- url: "https://pub.dev"
684
- source: hosted
685
- version: "1.4.0"
686
- url_launcher:
687
- dependency: transitive
688
- description:
689
- name: url_launcher
690
- sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603"
691
- url: "https://pub.dev"
692
- source: hosted
693
- version: "6.3.1"
694
- url_launcher_android:
695
- dependency: transitive
696
- description:
697
- name: url_launcher_android
698
- sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
699
- url: "https://pub.dev"
700
- source: hosted
701
- version: "6.3.17"
702
- url_launcher_ios:
703
- dependency: transitive
704
- description:
705
- name: url_launcher_ios
706
- sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
707
- url: "https://pub.dev"
708
- source: hosted
709
- version: "6.3.4"
710
- url_launcher_linux:
711
- dependency: transitive
712
- description:
713
- name: url_launcher_linux
714
- sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935"
715
- url: "https://pub.dev"
716
- source: hosted
717
- version: "3.2.1"
718
- url_launcher_macos:
719
- dependency: transitive
720
- description:
721
- name: url_launcher_macos
722
- sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
723
- url: "https://pub.dev"
724
- source: hosted
725
- version: "3.2.3"
726
- url_launcher_platform_interface:
727
- dependency: transitive
728
- description:
729
- name: url_launcher_platform_interface
730
- sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029"
731
- url: "https://pub.dev"
732
- source: hosted
733
- version: "2.3.2"
734
- url_launcher_web:
735
- dependency: transitive
736
- description:
737
- name: url_launcher_web
738
- sha256: "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2"
739
- url: "https://pub.dev"
740
- source: hosted
741
- version: "2.4.1"
742
- url_launcher_windows:
743
- dependency: transitive
744
- description:
745
- name: url_launcher_windows
746
- sha256: "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77"
747
- url: "https://pub.dev"
748
- source: hosted
749
- version: "3.1.4"
750
- uuid:
751
- dependency: transitive
752
- description:
753
- name: uuid
754
- sha256: a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff
755
- url: "https://pub.dev"
756
- source: hosted
757
- version: "4.5.1"
758
- vector_graphics:
759
- dependency: transitive
760
- description:
761
- name: vector_graphics
762
- sha256: a4f059dc26fc8295b5921376600a194c4ec7d55e72f2fe4c7d2831e103d461e6
763
- url: "https://pub.dev"
764
- source: hosted
765
- version: "1.1.19"
766
- vector_graphics_codec:
767
- dependency: transitive
768
- description:
769
- name: vector_graphics_codec
770
- sha256: "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146"
771
- url: "https://pub.dev"
772
- source: hosted
773
- version: "1.1.13"
774
- vector_graphics_compiler:
775
- dependency: transitive
776
- description:
777
- name: vector_graphics_compiler
778
- sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
779
- url: "https://pub.dev"
780
- source: hosted
781
- version: "1.1.18"
782
- vector_math:
783
- dependency: transitive
784
- description:
785
- name: vector_math
786
- sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
787
- url: "https://pub.dev"
788
- source: hosted
789
- version: "2.2.0"
790
- vm_service:
791
- dependency: transitive
792
- description:
793
- name: vm_service
794
- sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
795
- url: "https://pub.dev"
796
- source: hosted
797
- version: "15.0.2"
798
- web:
799
- dependency: transitive
800
- description:
801
- name: web
802
- sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
803
- url: "https://pub.dev"
804
- source: hosted
805
- version: "1.1.1"
806
- web_socket:
807
- dependency: transitive
808
- description:
809
- name: web_socket
810
- sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
811
- url: "https://pub.dev"
812
- source: hosted
813
- version: "1.0.1"
814
- web_socket_channel:
815
- dependency: transitive
816
- description:
817
- name: web_socket_channel
818
- sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
819
- url: "https://pub.dev"
820
- source: hosted
821
- version: "3.0.3"
822
- win32:
823
- dependency: transitive
824
- description:
825
- name: win32
826
- sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
827
- url: "https://pub.dev"
828
- source: hosted
829
- version: "5.14.0"
830
- win32_registry:
831
- dependency: transitive
832
- description:
833
- name: win32_registry
834
- sha256: "6f1b564492d0147b330dd794fee8f512cec4977957f310f9951b5f9d83618dae"
835
- url: "https://pub.dev"
836
- source: hosted
837
- version: "2.1.0"
838
- window_manager:
839
- dependency: transitive
840
- description:
841
- name: window_manager
842
- sha256: "7eb6d6c4164ec08e1bf978d6e733f3cebe792e2a23fb07cbca25c2872bfdbdcd"
843
- url: "https://pub.dev"
844
- source: hosted
845
- version: "0.5.1"
846
- window_to_front:
847
- dependency: transitive
848
- description:
849
- name: window_to_front
850
- sha256: "7aef379752b7190c10479e12b5fd7c0b9d92adc96817d9e96c59937929512aee"
851
- url: "https://pub.dev"
852
- source: hosted
853
- version: "0.0.3"
854
- xdg_directories:
855
- dependency: transitive
856
- description:
857
- name: xdg_directories
858
- sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
859
- url: "https://pub.dev"
860
- source: hosted
861
- version: "1.1.0"
862
- xml:
863
- dependency: transitive
864
- description:
865
- name: xml
866
- sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226
867
- url: "https://pub.dev"
868
- source: hosted
869
- version: "6.5.0"
870
- sdks:
871
- dart: ">=3.8.0 <4.0.0"
872
- flutter: ">=3.29.0"