flet-permission-handler 0.2.0.dev505__py3-none-any.whl → 0.70.0.dev6301__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-permission-handler might be problematic. Click here for more details.

@@ -1,7 +1,6 @@
1
1
  from typing import Optional
2
2
 
3
3
  import flet as ft
4
-
5
4
  from flet_permission_handler.types import Permission, PermissionStatus
6
5
 
7
6
  __all__ = ["PermissionHandler"]
@@ -12,9 +11,6 @@ class PermissionHandler(ft.Service):
12
11
  """
13
12
  Manages permissions for the application.
14
13
 
15
- This control is non-visual and should be added
16
- to [`Page.services`][flet.Page.services] list.
17
-
18
14
  Danger: Platform support
19
15
  Currently only supported on Android, iOS, Windows, and Web platforms.
20
16
 
@@ -40,68 +36,47 @@ class PermissionHandler(ft.Service):
40
36
  "Windows, and Web platforms."
41
37
  )
42
38
 
43
- async def get_status(
44
- self, permission: Permission, timeout: int = 10
45
- ) -> Optional[PermissionStatus]:
39
+ async def get_status(self, permission: Permission) -> Optional[PermissionStatus]:
46
40
  """
47
41
  Gets the current status of the given `permission`.
48
42
 
49
43
  Args:
50
44
  permission: The `Permission` to check the status for.
51
- timeout: The maximum amount of time (in seconds) to wait for a response.
52
45
 
53
46
  Returns:
54
47
  A `PermissionStatus` if the status is known, otherwise `None`.
55
-
56
- Raises:
57
- TimeoutError: If the request times out.
58
48
  """
59
49
  status = await self._invoke_method(
60
50
  method_name="get_status",
61
51
  arguments={"permission": permission},
62
- timeout=timeout,
63
52
  )
64
53
  return PermissionStatus(status) if status is not None else None
65
54
 
66
- async def request(
67
- self, permission: Permission, timeout: int = 60
68
- ) -> Optional[PermissionStatus]:
55
+ async def request(self, permission: Permission) -> Optional[PermissionStatus]:
69
56
  """
70
57
  Request the user for access to the `permission` if access hasn't already been
71
58
  granted access before.
72
59
 
73
60
  Args:
74
61
  permission: The `Permission` to request.
75
- timeout: The maximum amount of time (in seconds) to wait for a response.
76
62
 
77
63
  Returns:
78
64
  The new `PermissionStatus` after the request, or `None` if the request
79
65
  was not successful.
80
-
81
- Raises:
82
- TimeoutError: If the request times out.
83
66
  """
84
67
  r = await self._invoke_method(
85
68
  method_name="request",
86
69
  arguments={"permission": permission},
87
- timeout=timeout,
88
70
  )
89
71
  return PermissionStatus(r) if r is not None else None
90
72
 
91
- async def open_app_settings(self, timeout: int = 10) -> bool:
73
+ async def open_app_settings(self) -> bool:
92
74
  """
93
75
  Opens the app settings page.
94
76
 
95
- Args:
96
- timeout: The maximum amount of time (in seconds) to wait for a response.
97
-
98
77
  Returns:
99
78
  `True` if the app settings page could be opened, otherwise `False`.
100
-
101
- Raises:
102
- TimeoutError: If the request times out.
103
79
  """
104
80
  return await self._invoke_method(
105
81
  method_name="open_app_settings",
106
- timeout=timeout,
107
82
  )
@@ -258,7 +258,7 @@ class Permission(Enum):
258
258
 
259
259
  Info:
260
260
  When the privacy-friendly APIs (i.e. [Storage Access Framework](https://developer.android.com/guide/topics/providers/document-provider)
261
- or the [MediaStore](https://developer.android.com/training/data-storage/shared/media) APIs)
261
+ or the[MediaStore](https://developer.android.com/training/data-storage/shared/media) APIs)
262
262
  is all your app needs, the [PermissionGroup.storage] are the only
263
263
  permissions you need to request.
264
264
 
@@ -270,7 +270,7 @@ class Permission(Enum):
270
270
 
271
271
  Note:
272
272
  Only supported on Android 11+ (API 30+) only.
273
- """
273
+ """ # noqa: E501
274
274
 
275
275
  MEDIA_LIBRARY = "mediaLibrary"
276
276
  """
@@ -1,24 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-permission-handler
3
- Version: 0.2.0.dev505
4
- Summary: A Flet extension that simplifies working with permissions in your app.
3
+ Version: 0.70.0.dev6301
4
+ Summary: Manage runtime permissions in Flet apps.
5
5
  Author-email: Flet contributors <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
7
7
  Project-URL: Homepage, https://flet.dev
8
- Project-URL: Documentation, https://flet-dev.github.io/flet-permission-handler
9
- Project-URL: Repository, https://github.com/flet-dev/flet-permission-handler
10
- Project-URL: Issues, https://github.com/flet-dev/flet-permission-handler/issues
8
+ Project-URL: Documentation, https://docs.flet.dev/permission-handler
9
+ Project-URL: Repository, https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-permission-handler
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.dev6301
15
15
  Dynamic: license-file
16
16
 
17
17
  # flet-permission-handler
18
18
 
19
19
  [![pypi](https://img.shields.io/pypi/v/flet-permission-handler.svg)](https://pypi.python.org/pypi/flet-permission-handler)
20
20
  [![downloads](https://static.pepy.tech/badge/flet-permission-handler/month)](https://pepy.tech/project/flet-permission-handler)
21
- [![license](https://img.shields.io/github/license/flet-dev/flet-permission-handler.svg)](https://github.com/flet-dev/flet-permission-handler/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-permission-handler/LICENSE)
22
22
 
23
23
  A [Flet](https://flet.dev) extension that simplifies working with device permissions.
24
24
 
@@ -31,20 +31,13 @@ and brings similar functionality to Flet, including:
31
31
 
32
32
  ## Documentation
33
33
 
34
- Detailed documentation to this package can be found [here](https://flet-dev.github.io/flet-permission-handler/).
34
+ Detailed documentation to this package can be found [here](https://docs.flet.dev/permission-handler/).
35
35
 
36
36
  ## Platform Support
37
37
 
38
- This package supports the following platforms:
39
-
40
- | Platform | Supported |
41
- |----------|:---------:|
42
- | Windows | ✅ |
43
- | macOS | ❌ |
44
- | Linux | ❌ |
45
- | iOS | ✅ |
46
- | Android | ✅ |
47
- | Web | ✅ |
38
+ | Platform | Windows | macOS | Linux | iOS | Android | Web |
39
+ |----------|---------|-------|-------|-----|---------|-----|
40
+ | Supported| ✅ | ❌ | ❌ | ✅ | ✅ | ✅ |
48
41
 
49
42
  ## Usage
50
43
 
@@ -63,11 +56,6 @@ To install the `flet-permission-handler` package and add it to your project depe
63
56
  ```
64
57
  After this, you will have to manually add this package to your `requirements.txt` or `pyproject.toml`.
65
58
 
66
- - Using `poetry`:
67
- ```bash
68
- poetry add flet-permission-handler
69
- ```
70
-
71
59
  ### Examples
72
60
 
73
- For examples, see [these](./examples).
61
+ For examples, see [these](https://github.com/flet-dev/flet/tree/main/sdk/python/examples/controls/permission_handler).
@@ -0,0 +1,14 @@
1
+ flet_permission_handler/__init__.py,sha256=VYdjSU5NV0Pz4pZn4KhMDLI8eKiV4xsqjkEHvhr4v3s,226
2
+ flet_permission_handler/permission_handler.py,sha256=nUG05Zwxv50Fig9iu0L3gmEo9uoXMPqDq07ynxoRXa8,2495
3
+ flet_permission_handler/types.py,sha256=X_-64c347OLG3S3x_DMPXFV1NH8111zbNM0B2T3wU2M,11286
4
+ flet_permission_handler-0.70.0.dev6301.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
5
+ flutter/flet_permission_handler/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
6
+ flutter/flet_permission_handler/pubspec.yaml,sha256=yQHXz3NMHBH4L3d_AUyuuhnKLY-KtUEjq18KBtmnsUw,392
7
+ flutter/flet_permission_handler/lib/flet_permission_handler.dart,sha256=rrlbNta1UlnSvzwOJsAUmOHvEBjfUDvMo6jnZQIO67s,78
8
+ flutter/flet_permission_handler/lib/src/extension.dart,sha256=FYygqTMesWQOUIIf6dLmZS98gCVE_3KmccdR2_LTDg0,336
9
+ flutter/flet_permission_handler/lib/src/permission_handler.dart,sha256=5aBWHNUIczDmmbsbXzzzB79vIbpDVpBAxo281_ghkss,1395
10
+ flutter/flet_permission_handler/lib/src/utils/permission_handler.dart,sha256=EL5W_CCK8nxeQum4UmN7IU1R5J9Seg3xZBYMLRogCOU,405
11
+ flet_permission_handler-0.70.0.dev6301.dist-info/METADATA,sha256=8mR-aU42st1VkO598CHd09JeDLOd7WdefnYaDBmkBak,2335
12
+ flet_permission_handler-0.70.0.dev6301.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ flet_permission_handler-0.70.0.dev6301.dist-info/top_level.txt,sha256=GMsa0IlcchYQqCgGn8WkekKbU0cb5k8lCazopnbWU_s,32
14
+ flet_permission_handler-0.70.0.dev6301.dist-info/RECORD,,
@@ -1,22 +1,22 @@
1
1
  name: flet_permission_handler
2
- description: Flet PermissionHandler control
3
- homepage: https://flet.dev
4
- repository: https://github.com/flet-dev/flet-permission-handler/src/flutter/flet_permission_handler
5
- version: 0.2.0
2
+ description: Flet Permission Handler control
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
- permission_handler: ^12.0.0
15
+ permission_handler: 12.0.1
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_permission_handler/__init__.py,sha256=VYdjSU5NV0Pz4pZn4KhMDLI8eKiV4xsqjkEHvhr4v3s,226
2
- flet_permission_handler/permission_handler.py,sha256=6dHn-pHjJemMhZ-1jHFb6Oi7dVEBcEpCSEmM2zMDstA,3248
3
- flet_permission_handler/types.py,sha256=V_6b7fm9pfL2zd43upiPPpw2fJaIkhoA_9YnNImU3oU,11273
4
- flet_permission_handler-0.2.0.dev505.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
5
- flutter/flet_permission_handler/CHANGELOG.md,sha256=66sWepPaeTc9_lzcYIGU55AlxSU5Z1XVtknXpzd_-p8,40
6
- flutter/flet_permission_handler/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
7
- flutter/flet_permission_handler/README.md,sha256=CuYLIxfY73NeTbx8z1GgHMz-wTYmTKopoVNCAWiDj7w,84
8
- flutter/flet_permission_handler/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
9
- flutter/flet_permission_handler/pubspec.lock,sha256=0UDe3yxEkbdUkefy5o9x3vZFv0aa6JeL3lE3wja3c0E,24858
10
- flutter/flet_permission_handler/pubspec.yaml,sha256=P9-bE0zzMPEj9cusSi1D2MpnlTL_u_5XysCaQ9MjR8w,568
11
- flutter/flet_permission_handler/lib/flet_permission_handler.dart,sha256=rrlbNta1UlnSvzwOJsAUmOHvEBjfUDvMo6jnZQIO67s,78
12
- flutter/flet_permission_handler/lib/src/extension.dart,sha256=FYygqTMesWQOUIIf6dLmZS98gCVE_3KmccdR2_LTDg0,336
13
- flutter/flet_permission_handler/lib/src/permission_handler.dart,sha256=5aBWHNUIczDmmbsbXzzzB79vIbpDVpBAxo281_ghkss,1395
14
- flutter/flet_permission_handler/lib/src/utils/permission_handler.dart,sha256=EL5W_CCK8nxeQum4UmN7IU1R5J9Seg3xZBYMLRogCOU,405
15
- flet_permission_handler-0.2.0.dev505.dist-info/METADATA,sha256=AHAEbjG0BuZYXAT_9NsBOdldRMZDRwdcKitZHqxq_VQ,2421
16
- flet_permission_handler-0.2.0.dev505.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- flet_permission_handler-0.2.0.dev505.dist-info/top_level.txt,sha256=GMsa0IlcchYQqCgGn8WkekKbU0cb5k8lCazopnbWU_s,32
18
- flet_permission_handler-0.2.0.dev505.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- # 0.1.0
2
-
3
- Initial release of the package.
@@ -1,201 +0,0 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction,
10
- and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by
13
- the copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all
16
- other entities that control, are controlled by, or are under common
17
- control with that entity. For the purposes of this definition,
18
- "control" means (i) the power, direct or indirect, to cause the
19
- direction or management of such entity, whether by contract or
20
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
- outstanding shares, or (iii) beneficial ownership of such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity
24
- exercising permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation
28
- source, and configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical
31
- transformation or translation of a Source form, including but
32
- not limited to compiled object code, generated documentation,
33
- and conversions to other media types.
34
-
35
- "Work" shall mean the work of authorship, whether in Source or
36
- Object form, made available under the License, as indicated by a
37
- copyright notice that is included in or attached to the work
38
- (an example is provided in the Appendix below).
39
-
40
- "Derivative Works" shall mean any work, whether in Source or Object
41
- form, that is based on (or derived from) the Work and for which the
42
- editorial revisions, annotations, elaborations, or other modifications
43
- represent, as a whole, an original work of authorship. For the purposes
44
- of this License, Derivative Works shall not include works that remain
45
- separable from, or merely link (or bind by name) to the interfaces of,
46
- the Work and Derivative Works thereof.
47
-
48
- "Contribution" shall mean any work of authorship, including
49
- the original version of the Work and any modifications or additions
50
- to that Work or Derivative Works thereof, that is intentionally
51
- submitted to Licensor for inclusion in the Work by the copyright owner
52
- or by an individual or Legal Entity authorized to submit on behalf of
53
- the copyright owner. For the purposes of this definition, "submitted"
54
- means any form of electronic, verbal, or written communication sent
55
- to the Licensor or its representatives, including but not limited to
56
- communication on electronic mailing lists, source code control systems,
57
- and issue tracking systems that are managed by, or on behalf of, the
58
- Licensor for the purpose of discussing and improving the Work, but
59
- excluding communication that is conspicuously marked or otherwise
60
- designated in writing by the copyright owner as "Not a Contribution."
61
-
62
- "Contributor" shall mean Licensor and any individual or Legal Entity
63
- on behalf of whom a Contribution has been received by Licensor and
64
- subsequently incorporated within the Work.
65
-
66
- 2. Grant of Copyright License. Subject to the terms and conditions of
67
- this License, each Contributor hereby grants to You a perpetual,
68
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
- copyright license to reproduce, prepare Derivative Works of,
70
- publicly display, publicly perform, sublicense, and distribute the
71
- Work and such Derivative Works in Source or Object form.
72
-
73
- 3. Grant of Patent License. Subject to the terms and conditions of
74
- this License, each Contributor hereby grants to You a perpetual,
75
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
- (except as stated in this section) patent license to make, have made,
77
- use, offer to sell, sell, import, and otherwise transfer the Work,
78
- where such license applies only to those patent claims licensable
79
- by such Contributor that are necessarily infringed by their
80
- Contribution(s) alone or by combination of their Contribution(s)
81
- with the Work to which such Contribution(s) was submitted. If You
82
- institute patent litigation against any entity (including a
83
- cross-claim or counterclaim in a lawsuit) alleging that the Work
84
- or a Contribution incorporated within the Work constitutes direct
85
- or contributory patent infringement, then any patent licenses
86
- granted to You under this License for that Work shall terminate
87
- as of the date such litigation is filed.
88
-
89
- 4. Redistribution. You may reproduce and distribute copies of the
90
- Work or Derivative Works thereof in any medium, with or without
91
- modifications, and in Source or Object form, provided that You
92
- meet the following conditions:
93
-
94
- (a) You must give any other recipients of the Work or
95
- Derivative Works a copy of this License; and
96
-
97
- (b) You must cause any modified files to carry prominent notices
98
- stating that You changed the files; and
99
-
100
- (c) You must retain, in the Source form of any Derivative Works
101
- that You distribute, all copyright, patent, trademark, and
102
- attribution notices from the Source form of the Work,
103
- excluding those notices that do not pertain to any part of
104
- the Derivative Works; and
105
-
106
- (d) If the Work includes a "NOTICE" text file as part of its
107
- distribution, then any Derivative Works that You distribute must
108
- include a readable copy of the attribution notices contained
109
- within such NOTICE file, excluding those notices that do not
110
- pertain to any part of the Derivative Works, in at least one
111
- of the following places: within a NOTICE text file distributed
112
- as part of the Derivative Works; within the Source form or
113
- documentation, if provided along with the Derivative Works; or,
114
- within a display generated by the Derivative Works, if and
115
- wherever such third-party notices normally appear. The contents
116
- of the NOTICE file are for informational purposes only and
117
- do not modify the License. You may add Your own attribution
118
- notices within Derivative Works that You distribute, alongside
119
- or as an addendum to the NOTICE text from the Work, provided
120
- that such additional attribution notices cannot be construed
121
- as modifying the License.
122
-
123
- You may add Your own copyright statement to Your modifications and
124
- may provide additional or different license terms and conditions
125
- for use, reproduction, or distribution of Your modifications, or
126
- for any such Derivative Works as a whole, provided Your use,
127
- reproduction, and distribution of the Work otherwise complies with
128
- the conditions stated in this License.
129
-
130
- 5. Submission of Contributions. Unless You explicitly state otherwise,
131
- any Contribution intentionally submitted for inclusion in the Work
132
- by You to the Licensor shall be under the terms and conditions of
133
- this License, without any additional terms or conditions.
134
- Notwithstanding the above, nothing herein shall supersede or modify
135
- the terms of any separate license agreement you may have executed
136
- with Licensor regarding such Contributions.
137
-
138
- 6. Trademarks. This License does not grant permission to use the trade
139
- names, trademarks, service marks, or product names of the Licensor,
140
- except as required for reasonable and customary use in describing the
141
- origin of the Work and reproducing the content of the NOTICE file.
142
-
143
- 7. Disclaimer of Warranty. Unless required by applicable law or
144
- agreed to in writing, Licensor provides the Work (and each
145
- Contributor provides its Contributions) on an "AS IS" BASIS,
146
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
- implied, including, without limitation, any warranties or conditions
148
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
- PARTICULAR PURPOSE. You are solely responsible for determining the
150
- appropriateness of using or redistributing the Work and assume any
151
- risks associated with Your exercise of permissions under this License.
152
-
153
- 8. Limitation of Liability. In no event and under no legal theory,
154
- whether in tort (including negligence), contract, or otherwise,
155
- unless required by applicable law (such as deliberate and grossly
156
- negligent acts) or agreed to in writing, shall any Contributor be
157
- liable to You for damages, including any direct, indirect, special,
158
- incidental, or consequential damages of any character arising as a
159
- result of this License or out of the use or inability to use the
160
- Work (including but not limited to damages for loss of goodwill,
161
- work stoppage, computer failure or malfunction, or any and all
162
- other commercial damages or losses), even if such Contributor
163
- has been advised of the possibility of such damages.
164
-
165
- 9. Accepting Warranty or Additional Liability. While redistributing
166
- the Work or Derivative Works thereof, You may choose to offer,
167
- and charge a fee for, acceptance of support, warranty, indemnity,
168
- or other liability obligations and/or rights consistent with this
169
- License. However, in accepting such obligations, You may act only
170
- on Your own behalf and on Your sole responsibility, not on behalf
171
- of any other Contributor, and only if You agree to indemnify,
172
- defend, and hold each Contributor harmless for any liability
173
- incurred by, or claims asserted against, such Contributor by reason
174
- of your accepting any such warranty or additional liability.
175
-
176
- END OF TERMS AND CONDITIONS
177
-
178
- APPENDIX: How to apply the Apache License to your work.
179
-
180
- To apply the Apache License to your work, attach the following
181
- boilerplate notice, with the fields enclosed by brackets "[]"
182
- replaced with your own identifying information. (Don't include
183
- the brackets!) The text should be enclosed in the appropriate
184
- comment syntax for the file format. We also recommend that a
185
- file or class name and description of purpose be included on the
186
- same "printed page" as the copyright notice for easier
187
- identification within third-party archives.
188
-
189
- Copyright [yyyy] [name of copyright owner]
190
-
191
- Licensed under the Apache License, Version 2.0 (the "License");
192
- you may not use this file except in compliance with the License.
193
- You may obtain a copy of the License at
194
-
195
- http://www.apache.org/licenses/LICENSE-2.0
196
-
197
- Unless required by applicable law or agreed to in writing, software
198
- distributed under the License is distributed on an "AS IS" BASIS,
199
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
- See the License for the specific language governing permissions and
201
- limitations under the License.
@@ -1,3 +0,0 @@
1
- # Flet `PermissionHandler` control
2
-
3
- `PermissionHandler` control to use in Flet apps.
@@ -1,832 +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: f2d9f173c2c14635cc0e9b14c143c49ef30b4934e8d1d274d6206fcb0086a06f
129
- url: "https://pub.dev"
130
- source: hosted
131
- version: "10.3.3"
132
- flet:
133
- dependency: "direct main"
134
- description:
135
- path: "packages/flet"
136
- ref: main
137
- resolved-ref: cbdae3a51670e2a124bbe5883280302efffcb3e0
138
- url: "https://github.com/flet-dev/flet.git"
139
- source: git
140
- version: "0.70.0"
141
- flutter:
142
- dependency: "direct main"
143
- description: flutter
144
- source: sdk
145
- version: "0.0.0"
146
- flutter_highlight:
147
- dependency: transitive
148
- description:
149
- name: flutter_highlight
150
- sha256: "7b96333867aa07e122e245c033b8ad622e4e3a42a1a2372cbb098a2541d8782c"
151
- url: "https://pub.dev"
152
- source: hosted
153
- version: "0.7.0"
154
- flutter_lints:
155
- dependency: "direct dev"
156
- description:
157
- name: flutter_lints
158
- sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
159
- url: "https://pub.dev"
160
- source: hosted
161
- version: "3.0.2"
162
- flutter_localizations:
163
- dependency: transitive
164
- description: flutter
165
- source: sdk
166
- version: "0.0.0"
167
- flutter_markdown:
168
- dependency: transitive
169
- description:
170
- name: flutter_markdown
171
- sha256: e7bbc718adc9476aa14cfddc1ef048d2e21e4e8f18311aaac723266db9f9e7b5
172
- url: "https://pub.dev"
173
- source: hosted
174
- version: "0.7.6+2"
175
- flutter_plugin_android_lifecycle:
176
- dependency: transitive
177
- description:
178
- name: flutter_plugin_android_lifecycle
179
- sha256: b0694b7fb1689b0e6cc193b3f1fcac6423c4f93c74fb20b806c6b6f196db0c31
180
- url: "https://pub.dev"
181
- source: hosted
182
- version: "2.0.30"
183
- flutter_svg:
184
- dependency: transitive
185
- description:
186
- name: flutter_svg
187
- sha256: d44bf546b13025ec7353091516f6881f1d4c633993cb109c3916c3a0159dadf1
188
- url: "https://pub.dev"
189
- source: hosted
190
- version: "2.1.0"
191
- flutter_test:
192
- dependency: "direct dev"
193
- description: flutter
194
- source: sdk
195
- version: "0.0.0"
196
- flutter_web_plugins:
197
- dependency: transitive
198
- description: flutter
199
- source: sdk
200
- version: "0.0.0"
201
- highlight:
202
- dependency: transitive
203
- description:
204
- name: highlight
205
- sha256: "5353a83ffe3e3eca7df0abfb72dcf3fa66cc56b953728e7113ad4ad88497cf21"
206
- url: "https://pub.dev"
207
- source: hosted
208
- version: "0.7.0"
209
- http:
210
- dependency: transitive
211
- description:
212
- name: http
213
- sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
214
- url: "https://pub.dev"
215
- source: hosted
216
- version: "1.3.0"
217
- http_parser:
218
- dependency: transitive
219
- description:
220
- name: http_parser
221
- sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
222
- url: "https://pub.dev"
223
- source: hosted
224
- version: "4.1.2"
225
- intl:
226
- dependency: transitive
227
- description:
228
- name: intl
229
- sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
230
- url: "https://pub.dev"
231
- source: hosted
232
- version: "0.20.2"
233
- json_annotation:
234
- dependency: transitive
235
- description:
236
- name: json_annotation
237
- sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
238
- url: "https://pub.dev"
239
- source: hosted
240
- version: "4.9.0"
241
- leak_tracker:
242
- dependency: transitive
243
- description:
244
- name: leak_tracker
245
- sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
246
- url: "https://pub.dev"
247
- source: hosted
248
- version: "11.0.2"
249
- leak_tracker_flutter_testing:
250
- dependency: transitive
251
- description:
252
- name: leak_tracker_flutter_testing
253
- sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
254
- url: "https://pub.dev"
255
- source: hosted
256
- version: "3.0.10"
257
- leak_tracker_testing:
258
- dependency: transitive
259
- description:
260
- name: leak_tracker_testing
261
- sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
262
- url: "https://pub.dev"
263
- source: hosted
264
- version: "3.0.2"
265
- lints:
266
- dependency: transitive
267
- description:
268
- name: lints
269
- sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
270
- url: "https://pub.dev"
271
- source: hosted
272
- version: "3.0.0"
273
- logging:
274
- dependency: transitive
275
- description:
276
- name: logging
277
- sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
278
- url: "https://pub.dev"
279
- source: hosted
280
- version: "1.3.0"
281
- markdown:
282
- dependency: transitive
283
- description:
284
- name: markdown
285
- sha256: "935e23e1ff3bc02d390bad4d4be001208ee92cc217cb5b5a6c19bc14aaa318c1"
286
- url: "https://pub.dev"
287
- source: hosted
288
- version: "7.3.0"
289
- matcher:
290
- dependency: transitive
291
- description:
292
- name: matcher
293
- sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
294
- url: "https://pub.dev"
295
- source: hosted
296
- version: "0.12.17"
297
- material_color_utilities:
298
- dependency: transitive
299
- description:
300
- name: material_color_utilities
301
- sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
302
- url: "https://pub.dev"
303
- source: hosted
304
- version: "0.11.1"
305
- meta:
306
- dependency: transitive
307
- description:
308
- name: meta
309
- sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
310
- url: "https://pub.dev"
311
- source: hosted
312
- version: "1.16.0"
313
- msgpack_dart:
314
- dependency: transitive
315
- description:
316
- name: msgpack_dart
317
- sha256: c2d235ed01f364719b5296aecf43ac330f0d7bc865fa134d0d7910a40454dffb
318
- url: "https://pub.dev"
319
- source: hosted
320
- version: "1.0.1"
321
- nested:
322
- dependency: transitive
323
- description:
324
- name: nested
325
- sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
326
- url: "https://pub.dev"
327
- source: hosted
328
- version: "1.0.0"
329
- path:
330
- dependency: transitive
331
- description:
332
- name: path
333
- sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
334
- url: "https://pub.dev"
335
- source: hosted
336
- version: "1.9.1"
337
- path_parsing:
338
- dependency: transitive
339
- description:
340
- name: path_parsing
341
- sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca"
342
- url: "https://pub.dev"
343
- source: hosted
344
- version: "1.1.0"
345
- path_provider:
346
- dependency: transitive
347
- description:
348
- name: path_provider
349
- sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
350
- url: "https://pub.dev"
351
- source: hosted
352
- version: "2.1.5"
353
- path_provider_android:
354
- dependency: transitive
355
- description:
356
- name: path_provider_android
357
- sha256: "993381400e94d18469750e5b9dcb8206f15bc09f9da86b9e44a9b0092a0066db"
358
- url: "https://pub.dev"
359
- source: hosted
360
- version: "2.2.18"
361
- path_provider_foundation:
362
- dependency: transitive
363
- description:
364
- name: path_provider_foundation
365
- sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
366
- url: "https://pub.dev"
367
- source: hosted
368
- version: "2.4.2"
369
- path_provider_linux:
370
- dependency: transitive
371
- description:
372
- name: path_provider_linux
373
- sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
374
- url: "https://pub.dev"
375
- source: hosted
376
- version: "2.2.1"
377
- path_provider_platform_interface:
378
- dependency: transitive
379
- description:
380
- name: path_provider_platform_interface
381
- sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
382
- url: "https://pub.dev"
383
- source: hosted
384
- version: "2.1.2"
385
- path_provider_windows:
386
- dependency: transitive
387
- description:
388
- name: path_provider_windows
389
- sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
390
- url: "https://pub.dev"
391
- source: hosted
392
- version: "2.3.0"
393
- permission_handler:
394
- dependency: "direct main"
395
- description:
396
- name: permission_handler
397
- sha256: bc917da36261b00137bbc8896bf1482169cd76f866282368948f032c8c1caae1
398
- url: "https://pub.dev"
399
- source: hosted
400
- version: "12.0.1"
401
- permission_handler_android:
402
- dependency: transitive
403
- description:
404
- name: permission_handler_android
405
- sha256: "1e3bc410ca1bf84662104b100eb126e066cb55791b7451307f9708d4007350e6"
406
- url: "https://pub.dev"
407
- source: hosted
408
- version: "13.0.1"
409
- permission_handler_apple:
410
- dependency: transitive
411
- description:
412
- name: permission_handler_apple
413
- sha256: f000131e755c54cf4d84a5d8bd6e4149e262cc31c5a8b1d698de1ac85fa41023
414
- url: "https://pub.dev"
415
- source: hosted
416
- version: "9.4.7"
417
- permission_handler_html:
418
- dependency: transitive
419
- description:
420
- name: permission_handler_html
421
- sha256: "38f000e83355abb3392140f6bc3030660cfaef189e1f87824facb76300b4ff24"
422
- url: "https://pub.dev"
423
- source: hosted
424
- version: "0.1.3+5"
425
- permission_handler_platform_interface:
426
- dependency: transitive
427
- description:
428
- name: permission_handler_platform_interface
429
- sha256: eb99b295153abce5d683cac8c02e22faab63e50679b937fa1bf67d58bb282878
430
- url: "https://pub.dev"
431
- source: hosted
432
- version: "4.3.0"
433
- permission_handler_windows:
434
- dependency: transitive
435
- description:
436
- name: permission_handler_windows
437
- sha256: "1a790728016f79a41216d88672dbc5df30e686e811ad4e698bfc51f76ad91f1e"
438
- url: "https://pub.dev"
439
- source: hosted
440
- version: "0.2.1"
441
- petitparser:
442
- dependency: transitive
443
- description:
444
- name: petitparser
445
- sha256: "1a97266a94f7350d30ae522c0af07890c70b8e62c71e8e3920d1db4d23c057d1"
446
- url: "https://pub.dev"
447
- source: hosted
448
- version: "7.0.1"
449
- platform:
450
- dependency: transitive
451
- description:
452
- name: platform
453
- sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
454
- url: "https://pub.dev"
455
- source: hosted
456
- version: "3.1.6"
457
- plugin_platform_interface:
458
- dependency: transitive
459
- description:
460
- name: plugin_platform_interface
461
- sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
462
- url: "https://pub.dev"
463
- source: hosted
464
- version: "2.1.8"
465
- provider:
466
- dependency: transitive
467
- description:
468
- name: provider
469
- sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272"
470
- url: "https://pub.dev"
471
- source: hosted
472
- version: "6.1.5+1"
473
- screen_retriever:
474
- dependency: transitive
475
- description:
476
- name: screen_retriever
477
- sha256: "570dbc8e4f70bac451e0efc9c9bb19fa2d6799a11e6ef04f946d7886d2e23d0c"
478
- url: "https://pub.dev"
479
- source: hosted
480
- version: "0.2.0"
481
- screen_retriever_linux:
482
- dependency: transitive
483
- description:
484
- name: screen_retriever_linux
485
- sha256: f7f8120c92ef0784e58491ab664d01efda79a922b025ff286e29aa123ea3dd18
486
- url: "https://pub.dev"
487
- source: hosted
488
- version: "0.2.0"
489
- screen_retriever_macos:
490
- dependency: transitive
491
- description:
492
- name: screen_retriever_macos
493
- sha256: "71f956e65c97315dd661d71f828708bd97b6d358e776f1a30d5aa7d22d78a149"
494
- url: "https://pub.dev"
495
- source: hosted
496
- version: "0.2.0"
497
- screen_retriever_platform_interface:
498
- dependency: transitive
499
- description:
500
- name: screen_retriever_platform_interface
501
- sha256: ee197f4581ff0d5608587819af40490748e1e39e648d7680ecf95c05197240c0
502
- url: "https://pub.dev"
503
- source: hosted
504
- version: "0.2.0"
505
- screen_retriever_windows:
506
- dependency: transitive
507
- description:
508
- name: screen_retriever_windows
509
- sha256: "449ee257f03ca98a57288ee526a301a430a344a161f9202b4fcc38576716fe13"
510
- url: "https://pub.dev"
511
- source: hosted
512
- version: "0.2.0"
513
- screenshot:
514
- dependency: transitive
515
- description:
516
- name: screenshot
517
- sha256: "63817697a7835e6ce82add4228e15d233b74d42975c143ad8cfe07009fab866b"
518
- url: "https://pub.dev"
519
- source: hosted
520
- version: "3.0.0"
521
- sensors_plus:
522
- dependency: transitive
523
- description:
524
- name: sensors_plus
525
- sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
526
- url: "https://pub.dev"
527
- source: hosted
528
- version: "6.1.2"
529
- sensors_plus_platform_interface:
530
- dependency: transitive
531
- description:
532
- name: sensors_plus_platform_interface
533
- sha256: "58815d2f5e46c0c41c40fb39375d3f127306f7742efe3b891c0b1c87e2b5cd5d"
534
- url: "https://pub.dev"
535
- source: hosted
536
- version: "2.0.1"
537
- shared_preferences:
538
- dependency: transitive
539
- description:
540
- name: shared_preferences
541
- sha256: "846849e3e9b68f3ef4b60c60cf4b3e02e9321bc7f4d8c4692cf87ffa82fc8a3a"
542
- url: "https://pub.dev"
543
- source: hosted
544
- version: "2.5.2"
545
- shared_preferences_android:
546
- dependency: transitive
547
- description:
548
- name: shared_preferences_android
549
- sha256: a2608114b1ffdcbc9c120eb71a0e207c71da56202852d4aab8a5e30a82269e74
550
- url: "https://pub.dev"
551
- source: hosted
552
- version: "2.4.12"
553
- shared_preferences_foundation:
554
- dependency: transitive
555
- description:
556
- name: shared_preferences_foundation
557
- sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
558
- url: "https://pub.dev"
559
- source: hosted
560
- version: "2.5.4"
561
- shared_preferences_linux:
562
- dependency: transitive
563
- description:
564
- name: shared_preferences_linux
565
- sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
566
- url: "https://pub.dev"
567
- source: hosted
568
- version: "2.4.1"
569
- shared_preferences_platform_interface:
570
- dependency: transitive
571
- description:
572
- name: shared_preferences_platform_interface
573
- sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
574
- url: "https://pub.dev"
575
- source: hosted
576
- version: "2.4.1"
577
- shared_preferences_web:
578
- dependency: transitive
579
- description:
580
- name: shared_preferences_web
581
- sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019
582
- url: "https://pub.dev"
583
- source: hosted
584
- version: "2.4.3"
585
- shared_preferences_windows:
586
- dependency: transitive
587
- description:
588
- name: shared_preferences_windows
589
- sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
590
- url: "https://pub.dev"
591
- source: hosted
592
- version: "2.4.1"
593
- sky_engine:
594
- dependency: transitive
595
- description: flutter
596
- source: sdk
597
- version: "0.0.0"
598
- source_span:
599
- dependency: transitive
600
- description:
601
- name: source_span
602
- sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
603
- url: "https://pub.dev"
604
- source: hosted
605
- version: "1.10.1"
606
- stack_trace:
607
- dependency: transitive
608
- description:
609
- name: stack_trace
610
- sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
611
- url: "https://pub.dev"
612
- source: hosted
613
- version: "1.12.1"
614
- stream_channel:
615
- dependency: transitive
616
- description:
617
- name: stream_channel
618
- sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
619
- url: "https://pub.dev"
620
- source: hosted
621
- version: "2.1.4"
622
- string_scanner:
623
- dependency: transitive
624
- description:
625
- name: string_scanner
626
- sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
627
- url: "https://pub.dev"
628
- source: hosted
629
- version: "1.4.1"
630
- term_glyph:
631
- dependency: transitive
632
- description:
633
- name: term_glyph
634
- sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
635
- url: "https://pub.dev"
636
- source: hosted
637
- version: "1.2.2"
638
- test_api:
639
- dependency: transitive
640
- description:
641
- name: test_api
642
- sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
643
- url: "https://pub.dev"
644
- source: hosted
645
- version: "0.7.6"
646
- typed_data:
647
- dependency: transitive
648
- description:
649
- name: typed_data
650
- sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
651
- url: "https://pub.dev"
652
- source: hosted
653
- version: "1.4.0"
654
- url_launcher:
655
- dependency: transitive
656
- description:
657
- name: url_launcher
658
- sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603"
659
- url: "https://pub.dev"
660
- source: hosted
661
- version: "6.3.1"
662
- url_launcher_android:
663
- dependency: transitive
664
- description:
665
- name: url_launcher_android
666
- sha256: "199bc33e746088546a39cc5f36bac5a278c5e53b40cb3196f99e7345fdcfae6b"
667
- url: "https://pub.dev"
668
- source: hosted
669
- version: "6.3.22"
670
- url_launcher_ios:
671
- dependency: transitive
672
- description:
673
- name: url_launcher_ios
674
- sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
675
- url: "https://pub.dev"
676
- source: hosted
677
- version: "6.3.4"
678
- url_launcher_linux:
679
- dependency: transitive
680
- description:
681
- name: url_launcher_linux
682
- sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935"
683
- url: "https://pub.dev"
684
- source: hosted
685
- version: "3.2.1"
686
- url_launcher_macos:
687
- dependency: transitive
688
- description:
689
- name: url_launcher_macos
690
- sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
691
- url: "https://pub.dev"
692
- source: hosted
693
- version: "3.2.3"
694
- url_launcher_platform_interface:
695
- dependency: transitive
696
- description:
697
- name: url_launcher_platform_interface
698
- sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029"
699
- url: "https://pub.dev"
700
- source: hosted
701
- version: "2.3.2"
702
- url_launcher_web:
703
- dependency: transitive
704
- description:
705
- name: url_launcher_web
706
- sha256: "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2"
707
- url: "https://pub.dev"
708
- source: hosted
709
- version: "2.4.1"
710
- url_launcher_windows:
711
- dependency: transitive
712
- description:
713
- name: url_launcher_windows
714
- sha256: "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77"
715
- url: "https://pub.dev"
716
- source: hosted
717
- version: "3.1.4"
718
- vector_graphics:
719
- dependency: transitive
720
- description:
721
- name: vector_graphics
722
- sha256: a4f059dc26fc8295b5921376600a194c4ec7d55e72f2fe4c7d2831e103d461e6
723
- url: "https://pub.dev"
724
- source: hosted
725
- version: "1.1.19"
726
- vector_graphics_codec:
727
- dependency: transitive
728
- description:
729
- name: vector_graphics_codec
730
- sha256: "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146"
731
- url: "https://pub.dev"
732
- source: hosted
733
- version: "1.1.13"
734
- vector_graphics_compiler:
735
- dependency: transitive
736
- description:
737
- name: vector_graphics_compiler
738
- sha256: d354a7ec6931e6047785f4db12a1f61ec3d43b207fc0790f863818543f8ff0dc
739
- url: "https://pub.dev"
740
- source: hosted
741
- version: "1.1.19"
742
- vector_math:
743
- dependency: transitive
744
- description:
745
- name: vector_math
746
- sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
747
- url: "https://pub.dev"
748
- source: hosted
749
- version: "2.2.0"
750
- vm_service:
751
- dependency: transitive
752
- description:
753
- name: vm_service
754
- sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
755
- url: "https://pub.dev"
756
- source: hosted
757
- version: "15.0.2"
758
- web:
759
- dependency: transitive
760
- description:
761
- name: web
762
- sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
763
- url: "https://pub.dev"
764
- source: hosted
765
- version: "1.1.1"
766
- web_socket:
767
- dependency: transitive
768
- description:
769
- name: web_socket
770
- sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
771
- url: "https://pub.dev"
772
- source: hosted
773
- version: "1.0.1"
774
- web_socket_channel:
775
- dependency: transitive
776
- description:
777
- name: web_socket_channel
778
- sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
779
- url: "https://pub.dev"
780
- source: hosted
781
- version: "3.0.3"
782
- win32:
783
- dependency: transitive
784
- description:
785
- name: win32
786
- sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
787
- url: "https://pub.dev"
788
- source: hosted
789
- version: "5.14.0"
790
- win32_registry:
791
- dependency: transitive
792
- description:
793
- name: win32_registry
794
- sha256: "6f1b564492d0147b330dd794fee8f512cec4977957f310f9951b5f9d83618dae"
795
- url: "https://pub.dev"
796
- source: hosted
797
- version: "2.1.0"
798
- window_manager:
799
- dependency: transitive
800
- description:
801
- name: window_manager
802
- sha256: "7eb6d6c4164ec08e1bf978d6e733f3cebe792e2a23fb07cbca25c2872bfdbdcd"
803
- url: "https://pub.dev"
804
- source: hosted
805
- version: "0.5.1"
806
- window_to_front:
807
- dependency: transitive
808
- description:
809
- name: window_to_front
810
- sha256: "7aef379752b7190c10479e12b5fd7c0b9d92adc96817d9e96c59937929512aee"
811
- url: "https://pub.dev"
812
- source: hosted
813
- version: "0.0.3"
814
- xdg_directories:
815
- dependency: transitive
816
- description:
817
- name: xdg_directories
818
- sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
819
- url: "https://pub.dev"
820
- source: hosted
821
- version: "1.1.0"
822
- xml:
823
- dependency: transitive
824
- description:
825
- name: xml
826
- sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025"
827
- url: "https://pub.dev"
828
- source: hosted
829
- version: "6.6.1"
830
- sdks:
831
- dart: ">=3.9.0 <4.0.0"
832
- flutter: ">=3.35.0"