flet-flashlight 0.2.0.dev35__py3-none-any.whl → 0.2.0.dev49__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-flashlight might be problematic. Click here for more details.
- flet_flashlight/__init__.py +11 -0
- flet_flashlight/exceptions.py +11 -0
- flet_flashlight/flashlight.py +28 -35
- {flet_flashlight-0.2.0.dev35.dist-info → flet_flashlight-0.2.0.dev49.dist-info}/METADATA +8 -2
- {flet_flashlight-0.2.0.dev35.dist-info → flet_flashlight-0.2.0.dev49.dist-info}/RECORD +10 -10
- flutter/flet_flashlight/pubspec.lock +54 -38
- flutter/flet_flashlight/pubspec.yaml +1 -1
- {flet_flashlight-0.2.0.dev35.dist-info → flet_flashlight-0.2.0.dev49.dist-info}/WHEEL +0 -0
- {flet_flashlight-0.2.0.dev35.dist-info → flet_flashlight-0.2.0.dev49.dist-info}/licenses/LICENSE +0 -0
- {flet_flashlight-0.2.0.dev35.dist-info → flet_flashlight-0.2.0.dev49.dist-info}/top_level.txt +0 -0
flet_flashlight/__init__.py
CHANGED
|
@@ -8,3 +8,14 @@ from .exceptions import (
|
|
|
8
8
|
FlashlightException,
|
|
9
9
|
)
|
|
10
10
|
from .flashlight import Flashlight
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
"Flashlight",
|
|
14
|
+
"FlashlightDisableException",
|
|
15
|
+
"FlashlightDisableExistentUserException",
|
|
16
|
+
"FlashlightDisableNotAvailableException",
|
|
17
|
+
"FlashlightEnableException",
|
|
18
|
+
"FlashlightEnableExistentUserException",
|
|
19
|
+
"FlashlightEnableNotAvailableException",
|
|
20
|
+
"FlashlightException",
|
|
21
|
+
]
|
flet_flashlight/exceptions.py
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
__all__ = [
|
|
2
|
+
"FlashlightDisableException",
|
|
3
|
+
"FlashlightDisableExistentUserException",
|
|
4
|
+
"FlashlightDisableNotAvailableException",
|
|
5
|
+
"FlashlightEnableException",
|
|
6
|
+
"FlashlightEnableExistentUserException",
|
|
7
|
+
"FlashlightEnableNotAvailableException",
|
|
8
|
+
"FlashlightException",
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
class FlashlightException(Exception):
|
|
2
13
|
"""
|
|
3
14
|
Base class for all [`Flashlight`][(p).] exceptions.
|
flet_flashlight/flashlight.py
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
|
-
import
|
|
1
|
+
from typing import Optional
|
|
2
2
|
|
|
3
3
|
import flet as ft
|
|
4
4
|
|
|
5
|
-
from .exceptions import
|
|
5
|
+
from .exceptions import (
|
|
6
|
+
FlashlightDisableException,
|
|
7
|
+
FlashlightDisableExistentUserException,
|
|
8
|
+
FlashlightDisableNotAvailableException,
|
|
9
|
+
FlashlightEnableException,
|
|
10
|
+
FlashlightEnableExistentUserException,
|
|
11
|
+
FlashlightEnableNotAvailableException,
|
|
12
|
+
FlashlightException,
|
|
13
|
+
)
|
|
6
14
|
|
|
7
15
|
__all__ = ["Flashlight"]
|
|
8
16
|
|
|
@@ -10,10 +18,11 @@ __all__ = ["Flashlight"]
|
|
|
10
18
|
@ft.control("Flashlight")
|
|
11
19
|
class Flashlight(ft.Service):
|
|
12
20
|
"""
|
|
13
|
-
A control to use FlashLight. Works on iOS and Android.
|
|
21
|
+
A control to use FlashLight. Works on iOS and Android.
|
|
14
22
|
|
|
15
23
|
Note:
|
|
16
|
-
This control is a non-visual and should be added
|
|
24
|
+
This control is a non-visual and should be added
|
|
25
|
+
to [`Page.services`][flet.Page.services] list before it can be used.
|
|
17
26
|
"""
|
|
18
27
|
|
|
19
28
|
on = False
|
|
@@ -21,18 +30,19 @@ class Flashlight(ft.Service):
|
|
|
21
30
|
Whether the flashlight is currently turned on.
|
|
22
31
|
"""
|
|
23
32
|
|
|
24
|
-
on_error: ft.
|
|
33
|
+
on_error: Optional[ft.ControlEventHandler["Flashlight"]] = None
|
|
25
34
|
"""
|
|
26
35
|
Fires when an error occurs.
|
|
27
|
-
|
|
28
|
-
The `data` property of the event handler argument
|
|
36
|
+
|
|
37
|
+
The [`data`][flet.Event.data] property of the event handler argument
|
|
38
|
+
contains information on the error.
|
|
29
39
|
"""
|
|
30
40
|
|
|
31
|
-
async def
|
|
41
|
+
async def turn_on(self):
|
|
32
42
|
"""
|
|
33
43
|
Turns the flashlight on.
|
|
34
44
|
"""
|
|
35
|
-
r = await self.
|
|
45
|
+
r = await self._invoke_method("on")
|
|
36
46
|
if r is True:
|
|
37
47
|
self.on = True
|
|
38
48
|
else: # error occured
|
|
@@ -45,17 +55,11 @@ class Flashlight(ft.Service):
|
|
|
45
55
|
else:
|
|
46
56
|
raise FlashlightEnableException(error_msg)
|
|
47
57
|
|
|
48
|
-
def
|
|
49
|
-
"""
|
|
50
|
-
Turns the flashlight on.
|
|
51
|
-
"""
|
|
52
|
-
asyncio.create_task(self.turn_on_async())
|
|
53
|
-
|
|
54
|
-
async def turn_off_async(self):
|
|
58
|
+
async def turn_off(self):
|
|
55
59
|
"""
|
|
56
60
|
Turns the flashlight off.
|
|
57
61
|
"""
|
|
58
|
-
r = await self.
|
|
62
|
+
r = await self._invoke_method("off")
|
|
59
63
|
if r is True:
|
|
60
64
|
self.on = False
|
|
61
65
|
else: # error occured
|
|
@@ -68,32 +72,21 @@ class Flashlight(ft.Service):
|
|
|
68
72
|
else:
|
|
69
73
|
raise FlashlightDisableException(error_msg)
|
|
70
74
|
|
|
71
|
-
def
|
|
72
|
-
"""
|
|
73
|
-
Turns the flashlight off.
|
|
74
|
-
"""
|
|
75
|
-
asyncio.create_task(self.turn_off_async())
|
|
76
|
-
|
|
77
|
-
async def toggle_async(self):
|
|
75
|
+
async def toggle(self):
|
|
78
76
|
"""
|
|
79
77
|
Toggles the flashlight on and off.
|
|
80
78
|
"""
|
|
81
79
|
if self.on:
|
|
82
|
-
await self.
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
def toggle(self):
|
|
86
|
-
"""
|
|
87
|
-
Toggles the flashlight on and off.
|
|
88
|
-
"""
|
|
89
|
-
asyncio.create_task(self.toggle_async())
|
|
80
|
+
await self.turn_off()
|
|
81
|
+
else:
|
|
82
|
+
await self.turn_on()
|
|
90
83
|
|
|
91
|
-
async def
|
|
84
|
+
async def is_available(self):
|
|
92
85
|
"""
|
|
93
86
|
Checks if the flashlight is available on the device.
|
|
94
87
|
"""
|
|
95
|
-
r = await self.
|
|
96
|
-
if r
|
|
88
|
+
r = await self._invoke_method("is_available")
|
|
89
|
+
if isinstance(r, bool):
|
|
97
90
|
return r
|
|
98
91
|
else: # error occured
|
|
99
92
|
error_msg = r.get("error_msg")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-flashlight
|
|
3
|
-
Version: 0.2.0.
|
|
3
|
+
Version: 0.2.0.dev49
|
|
4
4
|
Summary: A Flet extension to manage the device torch/flashlight.
|
|
5
5
|
Author-email: Flet contributors <hello@flet.dev>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -41,7 +41,9 @@ This package supports the following platforms:
|
|
|
41
41
|
| Android | ✅ |
|
|
42
42
|
| Web | ❌ |
|
|
43
43
|
|
|
44
|
-
##
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
### Installation
|
|
45
47
|
|
|
46
48
|
To install the `flet-flashlight` package and add it to your project dependencies:
|
|
47
49
|
|
|
@@ -60,3 +62,7 @@ To install the `flet-flashlight` package and add it to your project dependencies
|
|
|
60
62
|
```bash
|
|
61
63
|
poetry add flet-flashlight
|
|
62
64
|
```
|
|
65
|
+
|
|
66
|
+
### Examples
|
|
67
|
+
|
|
68
|
+
For examples, see [these](./examples).
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
flet_flashlight/__init__.py,sha256=
|
|
2
|
-
flet_flashlight/exceptions.py,sha256=
|
|
3
|
-
flet_flashlight/flashlight.py,sha256=
|
|
4
|
-
flet_flashlight-0.2.0.
|
|
1
|
+
flet_flashlight/__init__.py,sha256=HeAGCDBu6m5xIHk9J5RwTwLsx78T295V_g6NPgTQLCw,634
|
|
2
|
+
flet_flashlight/exceptions.py,sha256=GZyn_wUgu9n9iR4Z5955ql1dILRY6Tk9huJGOiI5BAQ,1917
|
|
3
|
+
flet_flashlight/flashlight.py,sha256=qGazTCIQlZINS0SeIN9g515Rsfa1kXWi4tWaCp4WPIU,2811
|
|
4
|
+
flet_flashlight-0.2.0.dev49.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
5
5
|
flutter/flet_flashlight/CHANGELOG.md,sha256=66sWepPaeTc9_lzcYIGU55AlxSU5Z1XVtknXpzd_-p8,40
|
|
6
6
|
flutter/flet_flashlight/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
7
7
|
flutter/flet_flashlight/README.md,sha256=OCxLYGKGbpyTQOxMCbVoxLjrY1pdVVGGxtp0OBx23IA,70
|
|
8
8
|
flutter/flet_flashlight/analysis_options.yaml,sha256=tNXU6s4EJ4KmXROObwPetH5vkzRTVG4AH4gpMw85_EY,154
|
|
9
|
-
flutter/flet_flashlight/pubspec.lock,sha256=
|
|
10
|
-
flutter/flet_flashlight/pubspec.yaml,sha256=
|
|
9
|
+
flutter/flet_flashlight/pubspec.lock,sha256=E0_7p2RUoK9pwU1lm0H8f6XS45-gjP60qfWbHdVquSw,23512
|
|
10
|
+
flutter/flet_flashlight/pubspec.yaml,sha256=RIBc9yNy9daBOTJLCYnfKddIkweyN7i9huwN2vHbFkc,529
|
|
11
11
|
flutter/flet_flashlight/lib/flet_flashlight.dart,sha256=66hr4Shizat1MIyu957NiJI_xXYOSeOJbFI489qw7ok,70
|
|
12
12
|
flutter/flet_flashlight/lib/src/extension.dart,sha256=hAXduLLxlX9YmQYcYO8O-dXN7QEybmM2OiRScUUZOXE,314
|
|
13
13
|
flutter/flet_flashlight/lib/src/flashlight.dart,sha256=WnUQo7IcXmEAeQDZnhwEgizU4AinxzJ_SLSTfGszIe0,3453
|
|
14
|
-
flet_flashlight-0.2.0.
|
|
15
|
-
flet_flashlight-0.2.0.
|
|
16
|
-
flet_flashlight-0.2.0.
|
|
17
|
-
flet_flashlight-0.2.0.
|
|
14
|
+
flet_flashlight-0.2.0.dev49.dist-info/METADATA,sha256=9OipBku7G76Qu90aH29LYHRD2RQ7PJzRm-3-32Quqsc,2028
|
|
15
|
+
flet_flashlight-0.2.0.dev49.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
16
|
+
flet_flashlight-0.2.0.dev49.dist-info/top_level.txt,sha256=C3-VxFNdp8KnPIGb_CRsg2BPEtDQN0NEcbotjs3cUv4,24
|
|
17
|
+
flet_flashlight-0.2.0.dev49.dist-info/RECORD,,
|
|
@@ -13,10 +13,10 @@ packages:
|
|
|
13
13
|
dependency: transitive
|
|
14
14
|
description:
|
|
15
15
|
name: async
|
|
16
|
-
sha256:
|
|
16
|
+
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
|
|
17
17
|
url: "https://pub.dev"
|
|
18
18
|
source: hosted
|
|
19
|
-
version: "2.
|
|
19
|
+
version: "2.13.0"
|
|
20
20
|
boolean_selector:
|
|
21
21
|
dependency: transitive
|
|
22
22
|
description:
|
|
@@ -65,6 +65,14 @@ packages:
|
|
|
65
65
|
url: "https://pub.dev"
|
|
66
66
|
source: hosted
|
|
67
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"
|
|
68
76
|
device_info_plus:
|
|
69
77
|
dependency: transitive
|
|
70
78
|
description:
|
|
@@ -93,10 +101,10 @@ packages:
|
|
|
93
101
|
dependency: transitive
|
|
94
102
|
description:
|
|
95
103
|
name: fake_async
|
|
96
|
-
sha256: "
|
|
104
|
+
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
|
|
97
105
|
url: "https://pub.dev"
|
|
98
106
|
source: hosted
|
|
99
|
-
version: "1.3.
|
|
107
|
+
version: "1.3.3"
|
|
100
108
|
ffi:
|
|
101
109
|
dependency: transitive
|
|
102
110
|
description:
|
|
@@ -117,16 +125,16 @@ packages:
|
|
|
117
125
|
dependency: transitive
|
|
118
126
|
description:
|
|
119
127
|
name: file_picker
|
|
120
|
-
sha256:
|
|
128
|
+
sha256: ef7d2a085c1b1d69d17b6842d0734aad90156de08df6bd3c12496d0bd6ddf8e2
|
|
121
129
|
url: "https://pub.dev"
|
|
122
130
|
source: hosted
|
|
123
|
-
version: "10.
|
|
131
|
+
version: "10.3.1"
|
|
124
132
|
flet:
|
|
125
133
|
dependency: "direct main"
|
|
126
134
|
description:
|
|
127
135
|
path: "packages/flet"
|
|
128
136
|
ref: main
|
|
129
|
-
resolved-ref:
|
|
137
|
+
resolved-ref: "4ea9558543657d31dba3b11d6017beed2e16d447"
|
|
130
138
|
url: "https://github.com/flet-dev/flet.git"
|
|
131
139
|
source: git
|
|
132
140
|
version: "0.70.0"
|
|
@@ -147,10 +155,10 @@ packages:
|
|
|
147
155
|
dependency: "direct dev"
|
|
148
156
|
description:
|
|
149
157
|
name: flutter_lints
|
|
150
|
-
sha256:
|
|
158
|
+
sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
|
|
151
159
|
url: "https://pub.dev"
|
|
152
160
|
source: hosted
|
|
153
|
-
version: "
|
|
161
|
+
version: "3.0.2"
|
|
154
162
|
flutter_localizations:
|
|
155
163
|
dependency: transitive
|
|
156
164
|
description: flutter
|
|
@@ -168,10 +176,10 @@ packages:
|
|
|
168
176
|
dependency: transitive
|
|
169
177
|
description:
|
|
170
178
|
name: flutter_plugin_android_lifecycle
|
|
171
|
-
sha256:
|
|
179
|
+
sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
|
|
172
180
|
url: "https://pub.dev"
|
|
173
181
|
source: hosted
|
|
174
|
-
version: "2.0.
|
|
182
|
+
version: "2.0.29"
|
|
175
183
|
flutter_svg:
|
|
176
184
|
dependency: transitive
|
|
177
185
|
description:
|
|
@@ -218,10 +226,10 @@ packages:
|
|
|
218
226
|
dependency: transitive
|
|
219
227
|
description:
|
|
220
228
|
name: intl
|
|
221
|
-
sha256:
|
|
229
|
+
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
|
|
222
230
|
url: "https://pub.dev"
|
|
223
231
|
source: hosted
|
|
224
|
-
version: "0.
|
|
232
|
+
version: "0.20.2"
|
|
225
233
|
json_annotation:
|
|
226
234
|
dependency: transitive
|
|
227
235
|
description:
|
|
@@ -234,10 +242,10 @@ packages:
|
|
|
234
242
|
dependency: transitive
|
|
235
243
|
description:
|
|
236
244
|
name: leak_tracker
|
|
237
|
-
sha256:
|
|
245
|
+
sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0"
|
|
238
246
|
url: "https://pub.dev"
|
|
239
247
|
source: hosted
|
|
240
|
-
version: "10.0.
|
|
248
|
+
version: "10.0.9"
|
|
241
249
|
leak_tracker_flutter_testing:
|
|
242
250
|
dependency: transitive
|
|
243
251
|
description:
|
|
@@ -258,10 +266,10 @@ packages:
|
|
|
258
266
|
dependency: transitive
|
|
259
267
|
description:
|
|
260
268
|
name: lints
|
|
261
|
-
sha256:
|
|
269
|
+
sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
|
|
262
270
|
url: "https://pub.dev"
|
|
263
271
|
source: hosted
|
|
264
|
-
version: "
|
|
272
|
+
version: "3.0.0"
|
|
265
273
|
logging:
|
|
266
274
|
dependency: transitive
|
|
267
275
|
description:
|
|
@@ -354,10 +362,10 @@ packages:
|
|
|
354
362
|
dependency: transitive
|
|
355
363
|
description:
|
|
356
364
|
name: path_provider_foundation
|
|
357
|
-
sha256: "
|
|
365
|
+
sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
|
|
358
366
|
url: "https://pub.dev"
|
|
359
367
|
source: hosted
|
|
360
|
-
version: "2.4.
|
|
368
|
+
version: "2.4.2"
|
|
361
369
|
path_provider_linux:
|
|
362
370
|
dependency: transitive
|
|
363
371
|
description:
|
|
@@ -454,14 +462,22 @@ packages:
|
|
|
454
462
|
url: "https://pub.dev"
|
|
455
463
|
source: hosted
|
|
456
464
|
version: "0.2.0"
|
|
465
|
+
screenshot:
|
|
466
|
+
dependency: transitive
|
|
467
|
+
description:
|
|
468
|
+
name: screenshot
|
|
469
|
+
sha256: "63817697a7835e6ce82add4228e15d233b74d42975c143ad8cfe07009fab866b"
|
|
470
|
+
url: "https://pub.dev"
|
|
471
|
+
source: hosted
|
|
472
|
+
version: "3.0.0"
|
|
457
473
|
sensors_plus:
|
|
458
474
|
dependency: transitive
|
|
459
475
|
description:
|
|
460
476
|
name: sensors_plus
|
|
461
|
-
sha256: "
|
|
477
|
+
sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
|
|
462
478
|
url: "https://pub.dev"
|
|
463
479
|
source: hosted
|
|
464
|
-
version: "6.1.
|
|
480
|
+
version: "6.1.2"
|
|
465
481
|
sensors_plus_platform_interface:
|
|
466
482
|
dependency: transitive
|
|
467
483
|
description:
|
|
@@ -482,10 +498,10 @@ packages:
|
|
|
482
498
|
dependency: transitive
|
|
483
499
|
description:
|
|
484
500
|
name: shared_preferences_android
|
|
485
|
-
sha256: "
|
|
501
|
+
sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
|
|
486
502
|
url: "https://pub.dev"
|
|
487
503
|
source: hosted
|
|
488
|
-
version: "2.4.
|
|
504
|
+
version: "2.4.11"
|
|
489
505
|
shared_preferences_foundation:
|
|
490
506
|
dependency: transitive
|
|
491
507
|
description:
|
|
@@ -607,18 +623,18 @@ packages:
|
|
|
607
623
|
dependency: transitive
|
|
608
624
|
description:
|
|
609
625
|
name: url_launcher_android
|
|
610
|
-
sha256: "
|
|
626
|
+
sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
|
|
611
627
|
url: "https://pub.dev"
|
|
612
628
|
source: hosted
|
|
613
|
-
version: "6.3.
|
|
629
|
+
version: "6.3.17"
|
|
614
630
|
url_launcher_ios:
|
|
615
631
|
dependency: transitive
|
|
616
632
|
description:
|
|
617
633
|
name: url_launcher_ios
|
|
618
|
-
sha256:
|
|
634
|
+
sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
|
|
619
635
|
url: "https://pub.dev"
|
|
620
636
|
source: hosted
|
|
621
|
-
version: "6.3.
|
|
637
|
+
version: "6.3.4"
|
|
622
638
|
url_launcher_linux:
|
|
623
639
|
dependency: transitive
|
|
624
640
|
description:
|
|
@@ -631,10 +647,10 @@ packages:
|
|
|
631
647
|
dependency: transitive
|
|
632
648
|
description:
|
|
633
649
|
name: url_launcher_macos
|
|
634
|
-
sha256:
|
|
650
|
+
sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
|
|
635
651
|
url: "https://pub.dev"
|
|
636
652
|
source: hosted
|
|
637
|
-
version: "3.2.
|
|
653
|
+
version: "3.2.3"
|
|
638
654
|
url_launcher_platform_interface:
|
|
639
655
|
dependency: transitive
|
|
640
656
|
description:
|
|
@@ -679,10 +695,10 @@ packages:
|
|
|
679
695
|
dependency: transitive
|
|
680
696
|
description:
|
|
681
697
|
name: vector_graphics_compiler
|
|
682
|
-
sha256:
|
|
698
|
+
sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
|
|
683
699
|
url: "https://pub.dev"
|
|
684
700
|
source: hosted
|
|
685
|
-
version: "1.1.
|
|
701
|
+
version: "1.1.18"
|
|
686
702
|
vector_math:
|
|
687
703
|
dependency: transitive
|
|
688
704
|
description:
|
|
@@ -695,10 +711,10 @@ packages:
|
|
|
695
711
|
dependency: transitive
|
|
696
712
|
description:
|
|
697
713
|
name: vm_service
|
|
698
|
-
sha256:
|
|
714
|
+
sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
|
|
699
715
|
url: "https://pub.dev"
|
|
700
716
|
source: hosted
|
|
701
|
-
version: "
|
|
717
|
+
version: "15.0.0"
|
|
702
718
|
web:
|
|
703
719
|
dependency: transitive
|
|
704
720
|
description:
|
|
@@ -727,10 +743,10 @@ packages:
|
|
|
727
743
|
dependency: transitive
|
|
728
744
|
description:
|
|
729
745
|
name: win32
|
|
730
|
-
sha256: "
|
|
746
|
+
sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
|
|
731
747
|
url: "https://pub.dev"
|
|
732
748
|
source: hosted
|
|
733
|
-
version: "5.
|
|
749
|
+
version: "5.14.0"
|
|
734
750
|
win32_registry:
|
|
735
751
|
dependency: transitive
|
|
736
752
|
description:
|
|
@@ -743,10 +759,10 @@ packages:
|
|
|
743
759
|
dependency: transitive
|
|
744
760
|
description:
|
|
745
761
|
name: window_manager
|
|
746
|
-
sha256: "
|
|
762
|
+
sha256: "7eb6d6c4164ec08e1bf978d6e733f3cebe792e2a23fb07cbca25c2872bfdbdcd"
|
|
747
763
|
url: "https://pub.dev"
|
|
748
764
|
source: hosted
|
|
749
|
-
version: "0.5.
|
|
765
|
+
version: "0.5.1"
|
|
750
766
|
window_to_front:
|
|
751
767
|
dependency: transitive
|
|
752
768
|
description:
|
|
@@ -772,5 +788,5 @@ packages:
|
|
|
772
788
|
source: hosted
|
|
773
789
|
version: "6.5.0"
|
|
774
790
|
sdks:
|
|
775
|
-
dart: ">=3.
|
|
791
|
+
dart: ">=3.8.0 <4.0.0"
|
|
776
792
|
flutter: ">=3.29.0"
|
|
File without changes
|
{flet_flashlight-0.2.0.dev35.dist-info → flet_flashlight-0.2.0.dev49.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{flet_flashlight-0.2.0.dev35.dist-info → flet_flashlight-0.2.0.dev49.dist-info}/top_level.txt
RENAMED
|
File without changes
|