flet-flashlight 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of flet-flashlight might be problematic. Click here for more details.

@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.2
2
+ Name: flet-flashlight
3
+ Version: 0.1.0
4
+ Summary: Flashlight control for Flet
5
+ Author-email: Flet contributors <hello@flet.dev>
6
+ Project-URL: Homepage, https://flet.dev
7
+ Project-URL: Documentation, https://flet.dev/docs/controls/flashlight
8
+ Project-URL: Repository, https://github.com/flet-dev/flet-flashlight
9
+ Project-URL: Issues, https://github.com/flet-dev/flet-flashlight/issues
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: flet>=0.25.2
14
+
15
+ # Flashlight control for Flet
16
+
17
+ `Flashlight` control for Flet.
18
+
19
+ ## Usage
20
+
21
+ Add `flet-flashlight` as dependency (`pyproject.toml` or `requirements.txt`) to your Flet project.
22
+
23
+ ## Example
24
+
25
+ ```py
26
+
27
+ import flet as ft
28
+
29
+ import flet_flashlight as ffl
30
+
31
+ def main(page: ft.Page):
32
+ flashlight = ffl.Flashlight()
33
+ page.overlay.append(flashlight)
34
+ page.add(
35
+ ft.TextButton("toggle", on_click=lambda _: flashlight.toggle())
36
+ )
37
+
38
+ ft.app(main)
39
+ ```
@@ -0,0 +1,25 @@
1
+ # Flashlight control for Flet
2
+
3
+ `Flashlight` control for Flet.
4
+
5
+ ## Usage
6
+
7
+ Add `flet-flashlight` as dependency (`pyproject.toml` or `requirements.txt`) to your Flet project.
8
+
9
+ ## Example
10
+
11
+ ```py
12
+
13
+ import flet as ft
14
+
15
+ import flet_flashlight as ffl
16
+
17
+ def main(page: ft.Page):
18
+ flashlight = ffl.Flashlight()
19
+ page.overlay.append(flashlight)
20
+ page.add(
21
+ ft.TextButton("toggle", on_click=lambda _: flashlight.toggle())
22
+ )
23
+
24
+ ft.app(main)
25
+ ```
@@ -0,0 +1,36 @@
1
+ [project]
2
+ name = "flet-flashlight"
3
+ version = "0.1.0"
4
+ description = "Flashlight control for Flet"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Flet contributors", email = "hello@flet.dev" }
8
+ ]
9
+ classifiers = [
10
+ "License :: OSI Approved :: Apache Software License",
11
+ ]
12
+ requires-python = ">=3.8"
13
+ dependencies = [
14
+ "flet>=0.25.2",
15
+ ]
16
+
17
+ [project.urls]
18
+ Homepage = "https://flet.dev"
19
+ Documentation = "https://flet.dev/docs/controls/flashlight"
20
+ Repository = "https://github.com/flet-dev/flet-flashlight"
21
+ Issues = "https://github.com/flet-dev/flet-flashlight/issues"
22
+
23
+ [tool.setuptools.package-data]
24
+ "flutter.flet_flashlight" = ["**/*"]
25
+
26
+ [tool.uv]
27
+ dev-dependencies = [
28
+ "flet[all]>=0.25.2",
29
+ ]
30
+
31
+ [tool.setuptools]
32
+ license-files = []
33
+
34
+ [build-system]
35
+ requires = ["setuptools"]
36
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ from flet_flashlight.flashlight import Flashlight
@@ -0,0 +1,85 @@
1
+ from typing import Any, Optional
2
+
3
+ from flet.core.control import Control
4
+ from flet.core.ref import Ref
5
+
6
+
7
+ class Flashlight(Control):
8
+ """
9
+ A control to use FlashLight. Works on iOS and Android. Based on torch_light Flutter widget (https://pub.dev/packages/torch_light).
10
+
11
+ Flashlight control is non-visual and should be added to `page.overlay` list.
12
+
13
+ Example:
14
+ ```
15
+ import flet as ft
16
+
17
+ import flet_flashlight as ffl
18
+
19
+ def main(page: ft.Page):
20
+ flashLight = ffl.Flashlight()
21
+ page.overlay.append(flashLight)
22
+ page.add(
23
+ ft.TextButton("toggle", on_click: lambda _: flashlight.toggle())
24
+ )
25
+
26
+ ft.app(target=main)
27
+ ```
28
+
29
+ """
30
+
31
+ def __init__(
32
+ self,
33
+ ref: Optional[Ref] = None,
34
+ data: Any = None,
35
+ ):
36
+ Control.__init__(
37
+ self,
38
+ ref=ref,
39
+ data=data,
40
+ )
41
+
42
+ self.turned_on = False
43
+
44
+ def _get_control_name(self):
45
+ return "flashlight"
46
+
47
+ def turn_on(self, wait_timeout: Optional[int] = 5) -> bool:
48
+ sr = self.invoke_method("on", wait_for_result=True, wait_timeout=wait_timeout)
49
+
50
+ if int(sr) == 1:
51
+ self.turned_on = True
52
+ return self.turned_on
53
+
54
+ async def turn_on_async(self, wait_timeout: Optional[int] = 5) -> bool:
55
+ sr = await self.invoke_method_async(
56
+ "on", wait_for_result=True, wait_timeout=wait_timeout
57
+ )
58
+ if int(sr) == 1:
59
+ self.turned_on = True
60
+ return self.turned_on
61
+
62
+ def turn_off(self, wait_timeout: Optional[int] = 5) -> bool:
63
+ sr = self.invoke_method("off", wait_for_result=True, wait_timeout=wait_timeout)
64
+
65
+ if int(sr) == 1:
66
+ self.turned_on = False
67
+ return self.turned_on
68
+
69
+ async def turn_off_async(self, wait_timeout: Optional[int] = 5) -> bool:
70
+ sr = await self.invoke_method_async(
71
+ "off", wait_for_result=True, wait_timeout=wait_timeout
72
+ )
73
+ if int(sr) == 1:
74
+ self.turned_on = False
75
+ return self.turned_on
76
+
77
+ def toggle(self, wait_timeout: Optional[int] = 5) -> bool:
78
+ if self.turned_on:
79
+ return self.turn_off(wait_timeout)
80
+ return self.turn_on(wait_timeout)
81
+
82
+ async def toggle_async(self, wait_timeout: Optional[int] = 5) -> bool:
83
+ if self.turned_on:
84
+ return await self.turn_off_async(wait_timeout)
85
+ return await self.turn_on_async(wait_timeout)
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.2
2
+ Name: flet-flashlight
3
+ Version: 0.1.0
4
+ Summary: Flashlight control for Flet
5
+ Author-email: Flet contributors <hello@flet.dev>
6
+ Project-URL: Homepage, https://flet.dev
7
+ Project-URL: Documentation, https://flet.dev/docs/controls/flashlight
8
+ Project-URL: Repository, https://github.com/flet-dev/flet-flashlight
9
+ Project-URL: Issues, https://github.com/flet-dev/flet-flashlight/issues
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: flet>=0.25.2
14
+
15
+ # Flashlight control for Flet
16
+
17
+ `Flashlight` control for Flet.
18
+
19
+ ## Usage
20
+
21
+ Add `flet-flashlight` as dependency (`pyproject.toml` or `requirements.txt`) to your Flet project.
22
+
23
+ ## Example
24
+
25
+ ```py
26
+
27
+ import flet as ft
28
+
29
+ import flet_flashlight as ffl
30
+
31
+ def main(page: ft.Page):
32
+ flashlight = ffl.Flashlight()
33
+ page.overlay.append(flashlight)
34
+ page.add(
35
+ ft.TextButton("toggle", on_click=lambda _: flashlight.toggle())
36
+ )
37
+
38
+ ft.app(main)
39
+ ```
@@ -0,0 +1,18 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/flet_flashlight/__init__.py
4
+ src/flet_flashlight/flashlight.py
5
+ src/flet_flashlight.egg-info/PKG-INFO
6
+ src/flet_flashlight.egg-info/SOURCES.txt
7
+ src/flet_flashlight.egg-info/dependency_links.txt
8
+ src/flet_flashlight.egg-info/requires.txt
9
+ src/flet_flashlight.egg-info/top_level.txt
10
+ src/flutter/flet_flashlight/CHANGELOG.md
11
+ src/flutter/flet_flashlight/LICENSE
12
+ src/flutter/flet_flashlight/README.md
13
+ src/flutter/flet_flashlight/analysis_options.yaml
14
+ src/flutter/flet_flashlight/pubspec.lock
15
+ src/flutter/flet_flashlight/pubspec.yaml
16
+ src/flutter/flet_flashlight/lib/flet_flashlight.dart
17
+ src/flutter/flet_flashlight/lib/src/create_control.dart
18
+ src/flutter/flet_flashlight/lib/src/flashlight.dart
@@ -0,0 +1,2 @@
1
+ flet_flashlight
2
+ flutter
@@ -0,0 +1,3 @@
1
+ # 0.1.0
2
+
3
+ Initial release of the package.
@@ -0,0 +1,201 @@
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.
@@ -0,0 +1,3 @@
1
+ # Flet `Flashlight` control
2
+
3
+ `Flashlight` control to use in Flet apps.
@@ -0,0 +1,5 @@
1
+ include: package:flutter_lints/flutter.yaml
2
+
3
+
4
+ # Additional information about this file can be found at
5
+ # https://dart.dev/guides/language/analysis-options
@@ -0,0 +1,3 @@
1
+ library flet_flashlight;
2
+
3
+ export 'src/create_control.dart' show createControl, ensureInitialized;
@@ -0,0 +1,20 @@
1
+ import "package:flet/flet.dart";
2
+
3
+ import 'flashlight.dart';
4
+
5
+ CreateControlFactory createControl = (CreateControlArgs args) {
6
+ switch (args.control.type) {
7
+ case "flashlight":
8
+ return FlashlightControl(
9
+ parent: args.parent,
10
+ control: args.control,
11
+ nextChild: args.nextChild,
12
+ backend: args.backend);
13
+ default:
14
+ return null;
15
+ }
16
+ };
17
+
18
+ void ensureInitialized() {
19
+ // nothing to initialize
20
+ }
@@ -0,0 +1,62 @@
1
+ import 'dart:io' show Platform;
2
+ import 'dart:io';
3
+
4
+ import 'package:flet/flet.dart';
5
+ import 'package:flutter/widgets.dart';
6
+ import 'package:torch_light/torch_light.dart';
7
+
8
+ class FlashlightControl extends StatefulWidget {
9
+ final Control? parent;
10
+ final Control control;
11
+ final Widget? nextChild;
12
+ final FletControlBackend backend;
13
+
14
+ const FlashlightControl(
15
+ {super.key,
16
+ required this.parent,
17
+ required this.control,
18
+ required this.nextChild,
19
+ required this.backend});
20
+
21
+ @override
22
+ State<FlashlightControl> createState() => _FlashlightControlState();
23
+ }
24
+
25
+ class _FlashlightControlState extends State<FlashlightControl> {
26
+ @override
27
+ Widget build(BuildContext context) {
28
+ debugPrint("FlashLightControl build: ${widget.control.id}");
29
+
30
+ if (Platform.isIOS || Platform.isAndroid) {
31
+ () async {
32
+ widget.backend.subscribeMethods(widget.control.id,
33
+ (methodName, args) async {
34
+ switch (methodName) {
35
+ case "on":
36
+ try {
37
+ await TorchLight.enableTorch();
38
+ return "1";
39
+ } on Exception catch (e) {
40
+ debugPrint("Couldn't enable Flash: $e");
41
+ return "0";
42
+ }
43
+ case "off":
44
+ try {
45
+ await TorchLight.disableTorch();
46
+ return "1";
47
+ } on Exception catch (e) {
48
+ debugPrint("Couldn't disable Flash: $e");
49
+ return "0";
50
+ }
51
+ }
52
+ return null;
53
+ });
54
+ }();
55
+
56
+ return const SizedBox.shrink();
57
+ } else {
58
+ return const ErrorControl(
59
+ "FlashLight control is not supported on this platform yet.");
60
+ }
61
+ }
62
+ }
@@ -0,0 +1,727 @@
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: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6
9
+ url: "https://pub.dev"
10
+ source: hosted
11
+ version: "2.6.0"
12
+ async:
13
+ dependency: transitive
14
+ description:
15
+ name: async
16
+ sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
17
+ url: "https://pub.dev"
18
+ source: hosted
19
+ version: "2.11.0"
20
+ boolean_selector:
21
+ dependency: transitive
22
+ description:
23
+ name: boolean_selector
24
+ sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
25
+ url: "https://pub.dev"
26
+ source: hosted
27
+ version: "2.1.1"
28
+ characters:
29
+ dependency: transitive
30
+ description:
31
+ name: characters
32
+ sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
33
+ url: "https://pub.dev"
34
+ source: hosted
35
+ version: "1.3.0"
36
+ clock:
37
+ dependency: transitive
38
+ description:
39
+ name: clock
40
+ sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
41
+ url: "https://pub.dev"
42
+ source: hosted
43
+ version: "1.1.1"
44
+ collection:
45
+ dependency: "direct main"
46
+ description:
47
+ name: collection
48
+ sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a
49
+ url: "https://pub.dev"
50
+ source: hosted
51
+ version: "1.18.0"
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
+ equatable:
69
+ dependency: transitive
70
+ description:
71
+ name: equatable
72
+ sha256: "567c64b3cb4cf82397aac55f4f0cbd3ca20d77c6c03bedbc4ceaddc08904aef7"
73
+ url: "https://pub.dev"
74
+ source: hosted
75
+ version: "2.0.7"
76
+ fake_async:
77
+ dependency: transitive
78
+ description:
79
+ name: fake_async
80
+ sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
81
+ url: "https://pub.dev"
82
+ source: hosted
83
+ version: "1.3.1"
84
+ ffi:
85
+ dependency: transitive
86
+ description:
87
+ name: ffi
88
+ sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
89
+ url: "https://pub.dev"
90
+ source: hosted
91
+ version: "2.1.3"
92
+ file:
93
+ dependency: transitive
94
+ description:
95
+ name: file
96
+ sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
97
+ url: "https://pub.dev"
98
+ source: hosted
99
+ version: "7.0.1"
100
+ file_picker:
101
+ dependency: transitive
102
+ description:
103
+ name: file_picker
104
+ sha256: c904b4ab56d53385563c7c39d8e9fa9af086f91495dfc48717ad84a42c3cf204
105
+ url: "https://pub.dev"
106
+ source: hosted
107
+ version: "8.1.7"
108
+ fl_chart:
109
+ dependency: transitive
110
+ description:
111
+ name: fl_chart
112
+ sha256: "74959b99b92b9eebeed1a4049426fd67c4abc3c5a0f4d12e2877097d6a11ae08"
113
+ url: "https://pub.dev"
114
+ source: hosted
115
+ version: "0.69.2"
116
+ flet:
117
+ dependency: "direct main"
118
+ description:
119
+ name: flet
120
+ sha256: "225b22676644352aa285d7cca81ecdf48dcc791aa5715dd98b3e689ebd92bf03"
121
+ url: "https://pub.dev"
122
+ source: hosted
123
+ version: "0.25.2"
124
+ flutter:
125
+ dependency: "direct main"
126
+ description: flutter
127
+ source: sdk
128
+ version: "0.0.0"
129
+ flutter_highlight:
130
+ dependency: transitive
131
+ description:
132
+ name: flutter_highlight
133
+ sha256: "7b96333867aa07e122e245c033b8ad622e4e3a42a1a2372cbb098a2541d8782c"
134
+ url: "https://pub.dev"
135
+ source: hosted
136
+ version: "0.7.0"
137
+ flutter_lints:
138
+ dependency: "direct dev"
139
+ description:
140
+ name: flutter_lints
141
+ sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04
142
+ url: "https://pub.dev"
143
+ source: hosted
144
+ version: "2.0.3"
145
+ flutter_localizations:
146
+ dependency: transitive
147
+ description: flutter
148
+ source: sdk
149
+ version: "0.0.0"
150
+ flutter_markdown:
151
+ dependency: transitive
152
+ description:
153
+ name: flutter_markdown
154
+ sha256: e37f4c69a07b07bb92622ef6b131a53c9aae48f64b176340af9e8e5238718487
155
+ url: "https://pub.dev"
156
+ source: hosted
157
+ version: "0.7.5"
158
+ flutter_plugin_android_lifecycle:
159
+ dependency: transitive
160
+ description:
161
+ name: flutter_plugin_android_lifecycle
162
+ sha256: "615a505aef59b151b46bbeef55b36ce2b6ed299d160c51d84281946f0aa0ce0e"
163
+ url: "https://pub.dev"
164
+ source: hosted
165
+ version: "2.0.24"
166
+ flutter_redux:
167
+ dependency: transitive
168
+ description:
169
+ name: flutter_redux
170
+ sha256: "3b20be9e08d0038e1452fbfa1fdb1ea0a7c3738c997734530b3c6d0bb5fcdbdc"
171
+ url: "https://pub.dev"
172
+ source: hosted
173
+ version: "0.10.0"
174
+ flutter_svg:
175
+ dependency: transitive
176
+ description:
177
+ name: flutter_svg
178
+ sha256: c200fd79c918a40c5cd50ea0877fa13f81bdaf6f0a5d3dbcc2a13e3285d6aa1b
179
+ url: "https://pub.dev"
180
+ source: hosted
181
+ version: "2.0.17"
182
+ flutter_test:
183
+ dependency: "direct dev"
184
+ description: flutter
185
+ source: sdk
186
+ version: "0.0.0"
187
+ flutter_web_plugins:
188
+ dependency: transitive
189
+ description: flutter
190
+ source: sdk
191
+ version: "0.0.0"
192
+ highlight:
193
+ dependency: transitive
194
+ description:
195
+ name: highlight
196
+ sha256: "5353a83ffe3e3eca7df0abfb72dcf3fa66cc56b953728e7113ad4ad88497cf21"
197
+ url: "https://pub.dev"
198
+ source: hosted
199
+ version: "0.7.0"
200
+ http:
201
+ dependency: transitive
202
+ description:
203
+ name: http
204
+ sha256: b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010
205
+ url: "https://pub.dev"
206
+ source: hosted
207
+ version: "1.2.2"
208
+ http_parser:
209
+ dependency: transitive
210
+ description:
211
+ name: http_parser
212
+ sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
213
+ url: "https://pub.dev"
214
+ source: hosted
215
+ version: "4.0.2"
216
+ intl:
217
+ dependency: transitive
218
+ description:
219
+ name: intl
220
+ sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
221
+ url: "https://pub.dev"
222
+ source: hosted
223
+ version: "0.19.0"
224
+ js:
225
+ dependency: transitive
226
+ description:
227
+ name: js
228
+ sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
229
+ url: "https://pub.dev"
230
+ source: hosted
231
+ version: "0.6.7"
232
+ json_annotation:
233
+ dependency: transitive
234
+ description:
235
+ name: json_annotation
236
+ sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
237
+ url: "https://pub.dev"
238
+ source: hosted
239
+ version: "4.9.0"
240
+ leak_tracker:
241
+ dependency: transitive
242
+ description:
243
+ name: leak_tracker
244
+ sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05"
245
+ url: "https://pub.dev"
246
+ source: hosted
247
+ version: "10.0.5"
248
+ leak_tracker_flutter_testing:
249
+ dependency: transitive
250
+ description:
251
+ name: leak_tracker_flutter_testing
252
+ sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806"
253
+ url: "https://pub.dev"
254
+ source: hosted
255
+ version: "3.0.5"
256
+ leak_tracker_testing:
257
+ dependency: transitive
258
+ description:
259
+ name: leak_tracker_testing
260
+ sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3"
261
+ url: "https://pub.dev"
262
+ source: hosted
263
+ version: "3.0.1"
264
+ lints:
265
+ dependency: transitive
266
+ description:
267
+ name: lints
268
+ sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
269
+ url: "https://pub.dev"
270
+ source: hosted
271
+ version: "2.1.1"
272
+ logging:
273
+ dependency: transitive
274
+ description:
275
+ name: logging
276
+ sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
277
+ url: "https://pub.dev"
278
+ source: hosted
279
+ version: "1.3.0"
280
+ markdown:
281
+ dependency: transitive
282
+ description:
283
+ name: markdown
284
+ sha256: "935e23e1ff3bc02d390bad4d4be001208ee92cc217cb5b5a6c19bc14aaa318c1"
285
+ url: "https://pub.dev"
286
+ source: hosted
287
+ version: "7.3.0"
288
+ matcher:
289
+ dependency: transitive
290
+ description:
291
+ name: matcher
292
+ sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb
293
+ url: "https://pub.dev"
294
+ source: hosted
295
+ version: "0.12.16+1"
296
+ material_color_utilities:
297
+ dependency: transitive
298
+ description:
299
+ name: material_color_utilities
300
+ sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
301
+ url: "https://pub.dev"
302
+ source: hosted
303
+ version: "0.11.1"
304
+ meta:
305
+ dependency: transitive
306
+ description:
307
+ name: meta
308
+ sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
309
+ url: "https://pub.dev"
310
+ source: hosted
311
+ version: "1.15.0"
312
+ path:
313
+ dependency: transitive
314
+ description:
315
+ name: path
316
+ sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af"
317
+ url: "https://pub.dev"
318
+ source: hosted
319
+ version: "1.9.0"
320
+ path_parsing:
321
+ dependency: transitive
322
+ description:
323
+ name: path_parsing
324
+ sha256: "883402936929eac138ee0a45da5b0f2c80f89913e6dc3bf77eb65b84b409c6ca"
325
+ url: "https://pub.dev"
326
+ source: hosted
327
+ version: "1.1.0"
328
+ path_provider_linux:
329
+ dependency: transitive
330
+ description:
331
+ name: path_provider_linux
332
+ sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
333
+ url: "https://pub.dev"
334
+ source: hosted
335
+ version: "2.2.1"
336
+ path_provider_platform_interface:
337
+ dependency: transitive
338
+ description:
339
+ name: path_provider_platform_interface
340
+ sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
341
+ url: "https://pub.dev"
342
+ source: hosted
343
+ version: "2.1.2"
344
+ path_provider_windows:
345
+ dependency: transitive
346
+ description:
347
+ name: path_provider_windows
348
+ sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
349
+ url: "https://pub.dev"
350
+ source: hosted
351
+ version: "2.3.0"
352
+ petitparser:
353
+ dependency: transitive
354
+ description:
355
+ name: petitparser
356
+ sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27
357
+ url: "https://pub.dev"
358
+ source: hosted
359
+ version: "6.0.2"
360
+ platform:
361
+ dependency: transitive
362
+ description:
363
+ name: platform
364
+ sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
365
+ url: "https://pub.dev"
366
+ source: hosted
367
+ version: "3.1.6"
368
+ plugin_platform_interface:
369
+ dependency: transitive
370
+ description:
371
+ name: plugin_platform_interface
372
+ sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
373
+ url: "https://pub.dev"
374
+ source: hosted
375
+ version: "2.1.8"
376
+ redux:
377
+ dependency: transitive
378
+ description:
379
+ name: redux
380
+ sha256: "1e86ed5b1a9a717922d0a0ca41f9bf49c1a587d50050e9426fc65b14e85ec4d7"
381
+ url: "https://pub.dev"
382
+ source: hosted
383
+ version: "5.0.0"
384
+ screen_retriever:
385
+ dependency: transitive
386
+ description:
387
+ name: screen_retriever
388
+ sha256: "570dbc8e4f70bac451e0efc9c9bb19fa2d6799a11e6ef04f946d7886d2e23d0c"
389
+ url: "https://pub.dev"
390
+ source: hosted
391
+ version: "0.2.0"
392
+ screen_retriever_linux:
393
+ dependency: transitive
394
+ description:
395
+ name: screen_retriever_linux
396
+ sha256: f7f8120c92ef0784e58491ab664d01efda79a922b025ff286e29aa123ea3dd18
397
+ url: "https://pub.dev"
398
+ source: hosted
399
+ version: "0.2.0"
400
+ screen_retriever_macos:
401
+ dependency: transitive
402
+ description:
403
+ name: screen_retriever_macos
404
+ sha256: "71f956e65c97315dd661d71f828708bd97b6d358e776f1a30d5aa7d22d78a149"
405
+ url: "https://pub.dev"
406
+ source: hosted
407
+ version: "0.2.0"
408
+ screen_retriever_platform_interface:
409
+ dependency: transitive
410
+ description:
411
+ name: screen_retriever_platform_interface
412
+ sha256: ee197f4581ff0d5608587819af40490748e1e39e648d7680ecf95c05197240c0
413
+ url: "https://pub.dev"
414
+ source: hosted
415
+ version: "0.2.0"
416
+ screen_retriever_windows:
417
+ dependency: transitive
418
+ description:
419
+ name: screen_retriever_windows
420
+ sha256: "449ee257f03ca98a57288ee526a301a430a344a161f9202b4fcc38576716fe13"
421
+ url: "https://pub.dev"
422
+ source: hosted
423
+ version: "0.2.0"
424
+ sensors_plus:
425
+ dependency: transitive
426
+ description:
427
+ name: sensors_plus
428
+ sha256: "8e7fa79b4940442bb595bfc0ee9da4af5a22a0fe6ebacc74998245ee9496a82d"
429
+ url: "https://pub.dev"
430
+ source: hosted
431
+ version: "4.0.2"
432
+ sensors_plus_platform_interface:
433
+ dependency: transitive
434
+ description:
435
+ name: sensors_plus_platform_interface
436
+ sha256: bc472d6cfd622acb4f020e726433ee31788b038056691ba433fec80e448a094f
437
+ url: "https://pub.dev"
438
+ source: hosted
439
+ version: "1.2.0"
440
+ shared_preferences:
441
+ dependency: transitive
442
+ description:
443
+ name: shared_preferences
444
+ sha256: a752ce92ea7540fc35a0d19722816e04d0e72828a4200e83a98cf1a1eb524c9a
445
+ url: "https://pub.dev"
446
+ source: hosted
447
+ version: "2.3.5"
448
+ shared_preferences_android:
449
+ dependency: transitive
450
+ description:
451
+ name: shared_preferences_android
452
+ sha256: bf808be89fe9dc467475e982c1db6c2faf3d2acf54d526cd5ec37d86c99dbd84
453
+ url: "https://pub.dev"
454
+ source: hosted
455
+ version: "2.4.1"
456
+ shared_preferences_foundation:
457
+ dependency: transitive
458
+ description:
459
+ name: shared_preferences_foundation
460
+ sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
461
+ url: "https://pub.dev"
462
+ source: hosted
463
+ version: "2.5.4"
464
+ shared_preferences_linux:
465
+ dependency: transitive
466
+ description:
467
+ name: shared_preferences_linux
468
+ sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
469
+ url: "https://pub.dev"
470
+ source: hosted
471
+ version: "2.4.1"
472
+ shared_preferences_platform_interface:
473
+ dependency: transitive
474
+ description:
475
+ name: shared_preferences_platform_interface
476
+ sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
477
+ url: "https://pub.dev"
478
+ source: hosted
479
+ version: "2.4.1"
480
+ shared_preferences_web:
481
+ dependency: transitive
482
+ description:
483
+ name: shared_preferences_web
484
+ sha256: d2ca4132d3946fec2184261726b355836a82c33d7d5b67af32692aff18a4684e
485
+ url: "https://pub.dev"
486
+ source: hosted
487
+ version: "2.4.2"
488
+ shared_preferences_windows:
489
+ dependency: transitive
490
+ description:
491
+ name: shared_preferences_windows
492
+ sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
493
+ url: "https://pub.dev"
494
+ source: hosted
495
+ version: "2.4.1"
496
+ sky_engine:
497
+ dependency: transitive
498
+ description: flutter
499
+ source: sdk
500
+ version: "0.0.99"
501
+ source_span:
502
+ dependency: transitive
503
+ description:
504
+ name: source_span
505
+ sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
506
+ url: "https://pub.dev"
507
+ source: hosted
508
+ version: "1.10.0"
509
+ stack_trace:
510
+ dependency: transitive
511
+ description:
512
+ name: stack_trace
513
+ sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b"
514
+ url: "https://pub.dev"
515
+ source: hosted
516
+ version: "1.11.1"
517
+ stream_channel:
518
+ dependency: transitive
519
+ description:
520
+ name: stream_channel
521
+ sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7
522
+ url: "https://pub.dev"
523
+ source: hosted
524
+ version: "2.1.2"
525
+ string_scanner:
526
+ dependency: transitive
527
+ description:
528
+ name: string_scanner
529
+ sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
530
+ url: "https://pub.dev"
531
+ source: hosted
532
+ version: "1.2.0"
533
+ term_glyph:
534
+ dependency: transitive
535
+ description:
536
+ name: term_glyph
537
+ sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
538
+ url: "https://pub.dev"
539
+ source: hosted
540
+ version: "1.2.1"
541
+ test_api:
542
+ dependency: transitive
543
+ description:
544
+ name: test_api
545
+ sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb"
546
+ url: "https://pub.dev"
547
+ source: hosted
548
+ version: "0.7.2"
549
+ torch_light:
550
+ dependency: "direct main"
551
+ description:
552
+ name: torch_light
553
+ sha256: a1397443a375c6991151547cb77361085df6cf8aa59999292e683db7385a0d15
554
+ url: "https://pub.dev"
555
+ source: hosted
556
+ version: "1.1.0"
557
+ typed_data:
558
+ dependency: transitive
559
+ description:
560
+ name: typed_data
561
+ sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
562
+ url: "https://pub.dev"
563
+ source: hosted
564
+ version: "1.4.0"
565
+ url_launcher:
566
+ dependency: transitive
567
+ description:
568
+ name: url_launcher
569
+ sha256: "9d06212b1362abc2f0f0d78e6f09f726608c74e3b9462e8368bb03314aa8d603"
570
+ url: "https://pub.dev"
571
+ source: hosted
572
+ version: "6.3.1"
573
+ url_launcher_android:
574
+ dependency: transitive
575
+ description:
576
+ name: url_launcher_android
577
+ sha256: "6fc2f56536ee873eeb867ad176ae15f304ccccc357848b351f6f0d8d4a40d193"
578
+ url: "https://pub.dev"
579
+ source: hosted
580
+ version: "6.3.14"
581
+ url_launcher_ios:
582
+ dependency: transitive
583
+ description:
584
+ name: url_launcher_ios
585
+ sha256: "16a513b6c12bb419304e72ea0ae2ab4fed569920d1c7cb850263fe3acc824626"
586
+ url: "https://pub.dev"
587
+ source: hosted
588
+ version: "6.3.2"
589
+ url_launcher_linux:
590
+ dependency: transitive
591
+ description:
592
+ name: url_launcher_linux
593
+ sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935"
594
+ url: "https://pub.dev"
595
+ source: hosted
596
+ version: "3.2.1"
597
+ url_launcher_macos:
598
+ dependency: transitive
599
+ description:
600
+ name: url_launcher_macos
601
+ sha256: "17ba2000b847f334f16626a574c702b196723af2a289e7a93ffcb79acff855c2"
602
+ url: "https://pub.dev"
603
+ source: hosted
604
+ version: "3.2.2"
605
+ url_launcher_platform_interface:
606
+ dependency: transitive
607
+ description:
608
+ name: url_launcher_platform_interface
609
+ sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029"
610
+ url: "https://pub.dev"
611
+ source: hosted
612
+ version: "2.3.2"
613
+ url_launcher_web:
614
+ dependency: transitive
615
+ description:
616
+ name: url_launcher_web
617
+ sha256: "772638d3b34c779ede05ba3d38af34657a05ac55b06279ea6edd409e323dca8e"
618
+ url: "https://pub.dev"
619
+ source: hosted
620
+ version: "2.3.3"
621
+ url_launcher_windows:
622
+ dependency: transitive
623
+ description:
624
+ name: url_launcher_windows
625
+ sha256: "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77"
626
+ url: "https://pub.dev"
627
+ source: hosted
628
+ version: "3.1.4"
629
+ vector_graphics:
630
+ dependency: transitive
631
+ description:
632
+ name: vector_graphics
633
+ sha256: "27d5fefe86fb9aace4a9f8375b56b3c292b64d8c04510df230f849850d912cb7"
634
+ url: "https://pub.dev"
635
+ source: hosted
636
+ version: "1.1.15"
637
+ vector_graphics_codec:
638
+ dependency: transitive
639
+ description:
640
+ name: vector_graphics_codec
641
+ sha256: "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146"
642
+ url: "https://pub.dev"
643
+ source: hosted
644
+ version: "1.1.13"
645
+ vector_graphics_compiler:
646
+ dependency: transitive
647
+ description:
648
+ name: vector_graphics_compiler
649
+ sha256: "1b4b9e706a10294258727674a340ae0d6e64a7231980f9f9a3d12e4b42407aad"
650
+ url: "https://pub.dev"
651
+ source: hosted
652
+ version: "1.1.16"
653
+ vector_math:
654
+ dependency: transitive
655
+ description:
656
+ name: vector_math
657
+ sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
658
+ url: "https://pub.dev"
659
+ source: hosted
660
+ version: "2.1.4"
661
+ vm_service:
662
+ dependency: transitive
663
+ description:
664
+ name: vm_service
665
+ sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
666
+ url: "https://pub.dev"
667
+ source: hosted
668
+ version: "14.2.4"
669
+ web:
670
+ dependency: transitive
671
+ description:
672
+ name: web
673
+ sha256: cd3543bd5798f6ad290ea73d210f423502e71900302dde696f8bff84bf89a1cb
674
+ url: "https://pub.dev"
675
+ source: hosted
676
+ version: "1.1.0"
677
+ web_socket_channel:
678
+ dependency: transitive
679
+ description:
680
+ name: web_socket_channel
681
+ sha256: d88238e5eac9a42bb43ca4e721edba3c08c6354d4a53063afaa568516217621b
682
+ url: "https://pub.dev"
683
+ source: hosted
684
+ version: "2.4.0"
685
+ win32:
686
+ dependency: transitive
687
+ description:
688
+ name: win32
689
+ sha256: "154360849a56b7b67331c21f09a386562d88903f90a1099c5987afc1912e1f29"
690
+ url: "https://pub.dev"
691
+ source: hosted
692
+ version: "5.10.0"
693
+ window_manager:
694
+ dependency: transitive
695
+ description:
696
+ name: window_manager
697
+ sha256: "732896e1416297c63c9e3fb95aea72d0355f61390263982a47fd519169dc5059"
698
+ url: "https://pub.dev"
699
+ source: hosted
700
+ version: "0.4.3"
701
+ window_to_front:
702
+ dependency: transitive
703
+ description:
704
+ name: window_to_front
705
+ sha256: "7aef379752b7190c10479e12b5fd7c0b9d92adc96817d9e96c59937929512aee"
706
+ url: "https://pub.dev"
707
+ source: hosted
708
+ version: "0.0.3"
709
+ xdg_directories:
710
+ dependency: transitive
711
+ description:
712
+ name: xdg_directories
713
+ sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
714
+ url: "https://pub.dev"
715
+ source: hosted
716
+ version: "1.1.0"
717
+ xml:
718
+ dependency: transitive
719
+ description:
720
+ name: xml
721
+ sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226
722
+ url: "https://pub.dev"
723
+ source: hosted
724
+ version: "6.5.0"
725
+ sdks:
726
+ dart: ">=3.5.0 <4.0.0"
727
+ flutter: ">=3.24.0"
@@ -0,0 +1,18 @@
1
+ name: flet_flashlight
2
+ description: Flet Flashlight control
3
+ homepage: https://flet.dev
4
+ repository: https://github.com/flet-dev/flet-flashlight/src/flutter/flet_flashlight
5
+ version: 0.1.0
6
+ environment:
7
+ sdk: '>=3.2.3 <4.0.0'
8
+ flutter: '>=1.17.0'
9
+ dependencies:
10
+ flutter:
11
+ sdk: flutter
12
+ collection: ^1.16.0
13
+ torch_light: ^1.0.0
14
+ flet: ^0.25.2
15
+ dev_dependencies:
16
+ flutter_test:
17
+ sdk: flutter
18
+ flutter_lints: ^2.0.0