flet-geolocator 0.2.0.dev45__py3-none-any.whl → 0.2.0.dev52__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-geolocator might be problematic. Click here for more details.

@@ -1,5 +1,5 @@
1
- from .geolocator import Geolocator
2
- from .types import (
1
+ from flet_geolocator.geolocator import Geolocator
2
+ from flet_geolocator.types import (
3
3
  ForegroundNotificationConfiguration,
4
4
  GeolocatorAndroidConfiguration,
5
5
  GeolocatorConfiguration,
@@ -1,10 +1,9 @@
1
- import asyncio
2
1
  from dataclasses import field
3
2
  from typing import Optional
4
3
 
5
4
  import flet as ft
6
5
 
7
- from .types import (
6
+ from flet_geolocator.types import (
8
7
  GeolocatorConfiguration,
9
8
  GeolocatorPermissionStatus,
10
9
  GeolocatorPosition,
@@ -50,7 +49,7 @@ class Geolocator(ft.Service):
50
49
  Starts as `None` and will be updated when the position changes.
51
50
  """
52
51
 
53
- async def get_current_position_async(
52
+ async def get_current_position(
54
53
  self,
55
54
  configuration: Optional[GeolocatorConfiguration] = None,
56
55
  timeout: float = 30,
@@ -77,16 +76,14 @@ class Geolocator(ft.Service):
77
76
  Raises:
78
77
  TimeoutError: If the request times out.
79
78
  """
80
- r = await self._invoke_method_async(
79
+ r = await self._invoke_method(
81
80
  method_name="get_current_position",
82
81
  arguments={"configuration": configuration or self.configuration},
83
82
  timeout=timeout,
84
83
  )
85
84
  return GeolocatorPosition(**r)
86
85
 
87
- async def get_last_known_position_async(
88
- self, timeout: float = 10
89
- ) -> GeolocatorPosition:
86
+ async def get_last_known_position(self, timeout: float = 10) -> GeolocatorPosition:
90
87
  """
91
88
  Gets the last known position stored on the user's device.
92
89
  The accuracy can be defined using the
@@ -106,13 +103,13 @@ class Geolocator(ft.Service):
106
103
  TimeoutError: If the request times out.
107
104
  """
108
105
  assert not self.page.web, "get_last_known_position is not supported on web"
109
- r = await self._invoke_method_async(
106
+ r = await self._invoke_method(
110
107
  "get_last_known_position",
111
108
  timeout=timeout,
112
109
  )
113
110
  return GeolocatorPosition(**r)
114
111
 
115
- async def get_permission_status_async(
112
+ async def get_permission_status(
116
113
  self, timeout: float = 10
117
114
  ) -> GeolocatorPermissionStatus:
118
115
  """
@@ -127,15 +124,13 @@ class Geolocator(ft.Service):
127
124
  Raises:
128
125
  TimeoutError: If the request times out.
129
126
  """
130
- r = await self._invoke_method_async(
127
+ r = await self._invoke_method(
131
128
  "get_permission_status",
132
129
  timeout=timeout,
133
130
  )
134
131
  return GeolocatorPermissionStatus(r)
135
132
 
136
- async def request_permission_async(
137
- self, timeout: int = 60
138
- ) -> GeolocatorPermissionStatus:
133
+ async def request_permission(self, timeout: int = 60) -> GeolocatorPermissionStatus:
139
134
  """
140
135
  Requests the device for access to the device's location.
141
136
 
@@ -148,13 +143,13 @@ class Geolocator(ft.Service):
148
143
  Raises:
149
144
  TimeoutError: If the request times out.
150
145
  """
151
- r = await self._invoke_method_async(
146
+ r = await self._invoke_method(
152
147
  "request_permission",
153
148
  timeout=timeout,
154
149
  )
155
150
  return GeolocatorPermissionStatus(r)
156
151
 
157
- async def is_location_service_enabled_async(self, timeout: float = 10) -> bool:
152
+ async def is_location_service_enabled(self, timeout: float = 10) -> bool:
158
153
  """
159
154
  Checks if location service is enabled.
160
155
 
@@ -167,11 +162,9 @@ class Geolocator(ft.Service):
167
162
  Raises:
168
163
  TimeoutError: If the request times out.
169
164
  """
170
- return await self._invoke_method_async(
171
- "is_location_service_enabled", timeout=timeout
172
- )
165
+ return await self._invoke_method("is_location_service_enabled", timeout=timeout)
173
166
 
174
- async def open_app_settings_async(self, timeout: float = 10) -> bool:
167
+ async def open_app_settings(self, timeout: float = 10) -> bool:
175
168
  """
176
169
  Attempts to open the app's settings.
177
170
 
@@ -189,31 +182,12 @@ class Geolocator(ft.Service):
189
182
  TimeoutError: If the request times out.
190
183
  """
191
184
  assert not self.page.web, "open_app_settings is not supported on web"
192
- return await self._invoke_method_async(
185
+ return await self._invoke_method(
193
186
  "open_app_settings",
194
187
  timeout=timeout,
195
188
  )
196
189
 
197
- def open_location_settings(self, timeout: float = 10):
198
- """
199
- Attempts to open the device's location settings.
200
-
201
- Note:
202
- This method is not supported on web plaform.
203
-
204
- Args:
205
- timeout: The maximum amount of time (in seconds) to wait for a response.
206
-
207
- Returns:
208
- `True` if the device's settings were opened successfully, `False` otherwise.
209
-
210
- Raises:
211
- AssertionError: If invoked on a web platform.
212
- TimeoutError: If the request times out.
213
- """
214
- asyncio.create_task(self.open_location_settings_async(timeout=timeout))
215
-
216
- async def open_location_settings_async(self, timeout: float = 10):
190
+ async def open_location_settings(self, timeout: float = 10) -> bool:
217
191
  """
218
192
  Attempts to open the device's location settings.
219
193
 
@@ -231,12 +205,12 @@ class Geolocator(ft.Service):
231
205
  TimeoutError: If the request times out.
232
206
  """
233
207
  assert not self.page.web, "open_location_settings is not supported on web"
234
- await self._invoke_method_async(
208
+ return await self._invoke_method(
235
209
  "open_location_settings",
236
210
  timeout=timeout,
237
211
  )
238
212
 
239
- async def distance_between_async(
213
+ async def distance_between(
240
214
  self,
241
215
  start_latitude: ft.Number,
242
216
  start_longitude: ft.Number,
@@ -263,7 +237,7 @@ class Geolocator(ft.Service):
263
237
  Raises:
264
238
  TimeoutError: If the request times out.
265
239
  """
266
- await self._invoke_method_async(
240
+ await self._invoke_method(
267
241
  method_name="distance_between",
268
242
  arguments={
269
243
  "start_latitude": start_latitude,
flet_geolocator/types.py CHANGED
@@ -6,7 +6,7 @@ from typing import TYPE_CHECKING, Optional
6
6
  import flet as ft
7
7
 
8
8
  if TYPE_CHECKING:
9
- from .geolocator import Geolocator # noqa
9
+ from flet_geolocator.geolocator import Geolocator # noqa
10
10
 
11
11
  __all__ = [
12
12
  "ForegroundNotificationConfiguration",
@@ -94,15 +94,16 @@ class GeolocatorPermissionStatus(Enum):
94
94
  """
95
95
  Permission to access the device's location is denied.
96
96
 
97
- The app should try to request permission using the [`Geolocator.request_permission`][(p).] method.
97
+ The app should try to request permission using the
98
+ [`Geolocator.request_permission`][(p).] method.
98
99
  """
99
100
 
100
101
  DENIED_FOREVER = "deniedForever"
101
102
  """
102
103
  Permission to access the device's location is permanently denied.
103
104
 
104
- When requesting permissions, the permission dialog will not be shown until the user updates
105
- the permission in the app settings.
105
+ When requesting permissions, the permission dialog will not be shown until the
106
+ user updates the permission in the app settings.
106
107
  """
107
108
 
108
109
  WHILE_IN_USE = "whileInUse"
@@ -112,15 +113,16 @@ class GeolocatorPermissionStatus(Enum):
112
113
 
113
114
  ALWAYS = "always"
114
115
  """
115
- Permission to access the device's location is allowed even when the app is running in the background.
116
+ Permission to access the device's location is allowed even when the app is
117
+ running in the background.
116
118
  """
117
119
 
118
120
  UNABLE_TO_DETERMINE = "unableToDetermine"
119
121
  """
120
122
  Permission status cannot be determined.
121
123
 
122
- This status is only returned by the [`Geolocator.request_permission`][(p).] method on the web platform
123
- for browsers that did not implement the Permissions API.
124
+ This status is only returned by the [`Geolocator.request_permission`][(p).] method
125
+ on the web platform for browsers that did not implement the Permissions API.
124
126
  See: https://developer.mozilla.org/en-US/docs/Web/API/Permissions_API
125
127
  """
126
128
 
@@ -240,7 +242,8 @@ class GeolocatorPosition:
240
242
  The floor specifies the floor of the building on which the device is
241
243
  located.
242
244
 
243
- The floor property is only available on iOS and only when the information is available.
245
+ The floor property is only available on iOS
246
+ and only when the information is available.
244
247
  In all other cases this value will be `None`.
245
248
  """
246
249
 
@@ -363,7 +366,8 @@ class ForegroundNotificationConfiguration:
363
366
  """
364
367
  When enabled, a WifiLock is acquired when background execution is started.
365
368
  This allows the application to keep the Wi-Fi radio awake, even when the
366
- user has not used the device in a while (e.g. for background network communications).
369
+ user has not used the device in a while
370
+ (e.g. for background network communications).
367
371
 
368
372
  Wifi lock permissions should be obtained first by using a permissions library.
369
373
  """
@@ -392,16 +396,17 @@ class GeolocatorAndroidConfiguration(GeolocatorConfiguration):
392
396
  """
393
397
  Whether altitude should be calculated as MSL (EGM2008) from NMEA messages
394
398
  and reported as the altitude instead of using the geoidal height (WSG84). Setting
395
- this property true will help to align Android altitude to that of iOS which uses MSL.
399
+ this property true will help to align Android altitude to that of iOS which
400
+ uses MSL.
396
401
 
397
- If the NMEA message is empty then the altitude reported will still be the standard WSG84
398
- altitude from the GPS receiver.
402
+ If the NMEA message is empty then the altitude reported will still be
403
+ the standard WSG84 altitude from the GPS receiver.
399
404
 
400
405
  MSL Altitude is only available starting from Android N and not all devices support
401
406
  NMEA message returning $GPGGA sequences.
402
407
 
403
- This property only works with position stream updates and has no effect when getting the
404
- current position or last known position.
408
+ This property only works with position stream updates and has no effect when
409
+ getting the current position or last known position.
405
410
  """
406
411
 
407
412
  foreground_notification_config: Optional[ForegroundNotificationConfiguration] = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-geolocator
3
- Version: 0.2.0.dev45
3
+ Version: 0.2.0.dev52
4
4
  Summary: Adds geolocation capabilities to your Flet apps.
5
5
  Author-email: Flet contributors <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
@@ -20,7 +20,7 @@ Dynamic: license-file
20
20
  [![downloads](https://static.pepy.tech/badge/flet-geolocator/month)](https://pepy.tech/project/flet-geolocator)
21
21
  [![license](https://img.shields.io/github/license/flet-dev/flet-geolocator.svg)](https://github.com/flet-dev/flet-geolocator/blob/main/LICENSE)
22
22
 
23
- Adds geolocation capabilities to your [Flet](https://flet.dev) apps.
23
+ Adds geolocation capabilities to your [Flet](https://flet.dev) apps.
24
24
 
25
25
  Features include:
26
26
  - Get the last known location;
@@ -47,7 +47,9 @@ This package supports the following platforms:
47
47
  | Android | ✅ |
48
48
  | Web | ✅ |
49
49
 
50
- ## Installation
50
+ ## Usage
51
+
52
+ ### Installation
51
53
 
52
54
  To install the `flet-geolocator` package and add it to your project dependencies:
53
55
 
@@ -67,6 +69,6 @@ To install the `flet-geolocator` package and add it to your project dependencies
67
69
  poetry add flet-geolocator
68
70
  ```
69
71
 
70
- ## Examples
72
+ ### Examples
71
73
 
72
- For examples, see [this](./examples)
74
+ For examples, see [these](./examples).
@@ -1,18 +1,18 @@
1
- flet_geolocator/__init__.py,sha256=U8AdgjEjqXQo6fwl3-JbM4a9z9AlPsaEDNaUbK8gu_k,759
2
- flet_geolocator/geolocator.py,sha256=lE1TcIjbfacb5rHqqM5CNDqDXJpFnI2HUf_zFJeQoPg,8820
3
- flet_geolocator/types.py,sha256=mw4RIFwmg5Z7VRnqdU1B0gIqFATy1A9pYtCz8TNuqfk,12993
4
- flet_geolocator-0.2.0.dev45.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1
+ flet_geolocator/__init__.py,sha256=2oT0PnZGnjufBoTZK-3WDyYJJnZExT7OnJ-F1Qqoenw,789
2
+ flet_geolocator/geolocator.py,sha256=tgNfnEdM6OHnHaqylsESUFmY9Whde_461Dy4ijrirN4,8062
3
+ flet_geolocator/types.py,sha256=E_68vz7BEv_PWDk1j0DAoWDOfax-XBJ9J2Ije2cOktg,13028
4
+ flet_geolocator-0.2.0.dev52.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
5
5
  flutter/flet_geolocator/CHANGELOG.md,sha256=66sWepPaeTc9_lzcYIGU55AlxSU5Z1XVtknXpzd_-p8,40
6
6
  flutter/flet_geolocator/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
7
7
  flutter/flet_geolocator/README.md,sha256=sYHQP6tUk1CzbWAaqucJStoRvAsgp36IqjaIVoXCiF4,70
8
8
  flutter/flet_geolocator/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
9
- flutter/flet_geolocator/pubspec.lock,sha256=8dXtw29nn-a9Dav6RZdzrZyphDUhFlEW4kwgZ65eQFk,26406
9
+ flutter/flet_geolocator/pubspec.lock,sha256=8tFMbZWJhg91ERjcZiBcf4j33nwbFp15mVpeMsl01n8,26639
10
10
  flutter/flet_geolocator/pubspec.yaml,sha256=de-hyLxpdTX-naxnyd4D6cUAZW82jxodApSjQ0hFdWk,529
11
11
  flutter/flet_geolocator/lib/flet_geolocator.dart,sha256=f5rUWcdvXkySvVjv50N-m0neLWB3P2okmEWxGg9r9Vk,70
12
12
  flutter/flet_geolocator/lib/src/extension.dart,sha256=x8zm0Pt3ZsyTj7q8MImtLTIK_kCAoaqYaJ41NWPug-8,314
13
- flutter/flet_geolocator/lib/src/geolocator.dart,sha256=R0DznK7TJVU4S6QpSdR3zbOygnmM7l-IKL_NxTKrRnQ,3268
13
+ flutter/flet_geolocator/lib/src/geolocator.dart,sha256=GiN-E11OqatsYDIOwIgscrBhK9OPcHduttnuED6cqHs,3275
14
14
  flutter/flet_geolocator/lib/src/utils/geolocator.dart,sha256=BZxf9l1CIvuNEnZMVONUxAnGVSXl2XY1zihP1gH6qdo,3999
15
- flet_geolocator-0.2.0.dev45.dist-info/METADATA,sha256=OG058th2L5dHeW9OwR5-vQN0wNoO8rr3i-rI_NvYDxY,2179
16
- flet_geolocator-0.2.0.dev45.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- flet_geolocator-0.2.0.dev45.dist-info/top_level.txt,sha256=MuAs94VDBb5Btg9cvN83W2sHm_YslMQ2JOKZhqm88cs,24
18
- flet_geolocator-0.2.0.dev45.dist-info/RECORD,,
15
+ flet_geolocator-0.2.0.dev52.dist-info/METADATA,sha256=GugvnMl5hM-aoxUIU_fIhqipEm_e-A0lnG_QOvNh7rc,2192
16
+ flet_geolocator-0.2.0.dev52.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ flet_geolocator-0.2.0.dev52.dist-info/top_level.txt,sha256=MuAs94VDBb5Btg9cvN83W2sHm_YslMQ2JOKZhqm88cs,24
18
+ flet_geolocator-0.2.0.dev52.dist-info/RECORD,,
@@ -67,7 +67,7 @@ class GeolocatorService extends FletService {
67
67
  break;
68
68
  case "open_location_settings":
69
69
  if (!kIsWeb) {
70
- await Geolocator.openLocationSettings();
70
+ return await Geolocator.openLocationSettings();
71
71
  }
72
72
  break;
73
73
  case "get_last_known_position":
@@ -13,10 +13,10 @@ packages:
13
13
  dependency: transitive
14
14
  description:
15
15
  name: async
16
- sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63
16
+ sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
17
17
  url: "https://pub.dev"
18
18
  source: hosted
19
- version: "2.12.0"
19
+ version: "2.13.0"
20
20
  boolean_selector:
21
21
  dependency: transitive
22
22
  description:
@@ -101,10 +101,10 @@ packages:
101
101
  dependency: transitive
102
102
  description:
103
103
  name: fake_async
104
- sha256: "6a95e56b2449df2273fd8c45a662d6947ce1ebb7aafe80e550a3f68297f3cacc"
104
+ sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
105
105
  url: "https://pub.dev"
106
106
  source: hosted
107
- version: "1.3.2"
107
+ version: "1.3.3"
108
108
  ffi:
109
109
  dependency: transitive
110
110
  description:
@@ -125,10 +125,10 @@ packages:
125
125
  dependency: transitive
126
126
  description:
127
127
  name: file_picker
128
- sha256: ef9908739bdd9c476353d6adff72e88fd00c625f5b959ae23f7567bd5137db0a
128
+ sha256: ef7d2a085c1b1d69d17b6842d0734aad90156de08df6bd3c12496d0bd6ddf8e2
129
129
  url: "https://pub.dev"
130
130
  source: hosted
131
- version: "10.2.0"
131
+ version: "10.3.1"
132
132
  fixnum:
133
133
  dependency: transitive
134
134
  description:
@@ -142,7 +142,7 @@ packages:
142
142
  description:
143
143
  path: "packages/flet"
144
144
  ref: main
145
- resolved-ref: cf8823c5d766ea7866480986aa3ee871f4091e78
145
+ resolved-ref: "4ea9558543657d31dba3b11d6017beed2e16d447"
146
146
  url: "https://github.com/flet-dev/flet.git"
147
147
  source: git
148
148
  version: "0.70.0"
@@ -184,10 +184,10 @@ packages:
184
184
  dependency: transitive
185
185
  description:
186
186
  name: flutter_plugin_android_lifecycle
187
- sha256: f948e346c12f8d5480d2825e03de228d0eb8c3a737e4cdaa122267b89c022b5e
187
+ sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
188
188
  url: "https://pub.dev"
189
189
  source: hosted
190
- version: "2.0.28"
190
+ version: "2.0.29"
191
191
  flutter_svg:
192
192
  dependency: transitive
193
193
  description:
@@ -306,10 +306,10 @@ packages:
306
306
  dependency: transitive
307
307
  description:
308
308
  name: intl
309
- sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
309
+ sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
310
310
  url: "https://pub.dev"
311
311
  source: hosted
312
- version: "0.19.0"
312
+ version: "0.20.2"
313
313
  json_annotation:
314
314
  dependency: transitive
315
315
  description:
@@ -322,10 +322,10 @@ packages:
322
322
  dependency: transitive
323
323
  description:
324
324
  name: leak_tracker
325
- sha256: c35baad643ba394b40aac41080300150a4f08fd0fd6a10378f8f7c6bc161acec
325
+ sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0"
326
326
  url: "https://pub.dev"
327
327
  source: hosted
328
- version: "10.0.8"
328
+ version: "10.0.9"
329
329
  leak_tracker_flutter_testing:
330
330
  dependency: transitive
331
331
  description:
@@ -410,18 +410,18 @@ packages:
410
410
  dependency: transitive
411
411
  description:
412
412
  name: package_info_plus
413
- sha256: "7976bfe4c583170d6cdc7077e3237560b364149fcd268b5f53d95a991963b191"
413
+ sha256: "16eee997588c60225bda0488b6dcfac69280a6b7a3cf02c741895dd370a02968"
414
414
  url: "https://pub.dev"
415
415
  source: hosted
416
- version: "8.3.0"
416
+ version: "8.3.1"
417
417
  package_info_plus_platform_interface:
418
418
  dependency: transitive
419
419
  description:
420
420
  name: package_info_plus_platform_interface
421
- sha256: "6c935fb612dff8e3cc9632c2b301720c77450a126114126ffaafe28d2e87956c"
421
+ sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086"
422
422
  url: "https://pub.dev"
423
423
  source: hosted
424
- version: "3.2.0"
424
+ version: "3.2.1"
425
425
  path:
426
426
  dependency: transitive
427
427
  description:
@@ -458,10 +458,10 @@ packages:
458
458
  dependency: transitive
459
459
  description:
460
460
  name: path_provider_foundation
461
- sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
461
+ sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
462
462
  url: "https://pub.dev"
463
463
  source: hosted
464
- version: "2.4.1"
464
+ version: "2.4.2"
465
465
  path_provider_linux:
466
466
  dependency: transitive
467
467
  description:
@@ -558,14 +558,22 @@ packages:
558
558
  url: "https://pub.dev"
559
559
  source: hosted
560
560
  version: "0.2.0"
561
+ screenshot:
562
+ dependency: transitive
563
+ description:
564
+ name: screenshot
565
+ sha256: "63817697a7835e6ce82add4228e15d233b74d42975c143ad8cfe07009fab866b"
566
+ url: "https://pub.dev"
567
+ source: hosted
568
+ version: "3.0.0"
561
569
  sensors_plus:
562
570
  dependency: transitive
563
571
  description:
564
572
  name: sensors_plus
565
- sha256: "905282c917c6bb731c242f928665c2ea15445aa491249dea9d98d7c79dc8fd39"
573
+ sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
566
574
  url: "https://pub.dev"
567
575
  source: hosted
568
- version: "6.1.1"
576
+ version: "6.1.2"
569
577
  sensors_plus_platform_interface:
570
578
  dependency: transitive
571
579
  description:
@@ -586,10 +594,10 @@ packages:
586
594
  dependency: transitive
587
595
  description:
588
596
  name: shared_preferences_android
589
- sha256: "20cbd561f743a342c76c151d6ddb93a9ce6005751e7aa458baad3858bfbfb6ac"
597
+ sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
590
598
  url: "https://pub.dev"
591
599
  source: hosted
592
- version: "2.4.10"
600
+ version: "2.4.11"
593
601
  shared_preferences_foundation:
594
602
  dependency: transitive
595
603
  description:
@@ -711,18 +719,18 @@ packages:
711
719
  dependency: transitive
712
720
  description:
713
721
  name: url_launcher_android
714
- sha256: "8582d7f6fe14d2652b4c45c9b6c14c0b678c2af2d083a11b604caeba51930d79"
722
+ sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
715
723
  url: "https://pub.dev"
716
724
  source: hosted
717
- version: "6.3.16"
725
+ version: "6.3.17"
718
726
  url_launcher_ios:
719
727
  dependency: transitive
720
728
  description:
721
729
  name: url_launcher_ios
722
- sha256: "7f2022359d4c099eea7df3fdf739f7d3d3b9faf3166fb1dd390775176e0b76cb"
730
+ sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
723
731
  url: "https://pub.dev"
724
732
  source: hosted
725
- version: "6.3.3"
733
+ version: "6.3.4"
726
734
  url_launcher_linux:
727
735
  dependency: transitive
728
736
  description:
@@ -735,10 +743,10 @@ packages:
735
743
  dependency: transitive
736
744
  description:
737
745
  name: url_launcher_macos
738
- sha256: "17ba2000b847f334f16626a574c702b196723af2a289e7a93ffcb79acff855c2"
746
+ sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
739
747
  url: "https://pub.dev"
740
748
  source: hosted
741
- version: "3.2.2"
749
+ version: "3.2.3"
742
750
  url_launcher_platform_interface:
743
751
  dependency: transitive
744
752
  description:
@@ -791,10 +799,10 @@ packages:
791
799
  dependency: transitive
792
800
  description:
793
801
  name: vector_graphics_compiler
794
- sha256: "557a315b7d2a6dbb0aaaff84d857967ce6bdc96a63dc6ee2a57ce5a6ee5d3331"
802
+ sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
795
803
  url: "https://pub.dev"
796
804
  source: hosted
797
- version: "1.1.17"
805
+ version: "1.1.18"
798
806
  vector_math:
799
807
  dependency: transitive
800
808
  description:
@@ -807,10 +815,10 @@ packages:
807
815
  dependency: transitive
808
816
  description:
809
817
  name: vm_service
810
- sha256: "0968250880a6c5fe7edc067ed0a13d4bae1577fe2771dcf3010d52c4a9d3ca14"
818
+ sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
811
819
  url: "https://pub.dev"
812
820
  source: hosted
813
- version: "14.3.1"
821
+ version: "15.0.0"
814
822
  web:
815
823
  dependency: transitive
816
824
  description:
@@ -839,10 +847,10 @@ packages:
839
847
  dependency: transitive
840
848
  description:
841
849
  name: win32
842
- sha256: "329edf97fdd893e0f1e3b9e88d6a0e627128cc17cc316a8d67fda8f1451178ba"
850
+ sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
843
851
  url: "https://pub.dev"
844
852
  source: hosted
845
- version: "5.13.0"
853
+ version: "5.14.0"
846
854
  win32_registry:
847
855
  dependency: transitive
848
856
  description:
@@ -884,5 +892,5 @@ packages:
884
892
  source: hosted
885
893
  version: "6.5.0"
886
894
  sdks:
887
- dart: ">=3.7.0 <4.0.0"
895
+ dart: ">=3.8.0 <4.0.0"
888
896
  flutter: ">=3.29.0"