flet-geolocator 0.2.0.dev30__py3-none-any.whl → 0.2.0.dev45__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.

@@ -11,3 +11,17 @@ from .types import (
11
11
  GeolocatorPositionChangeEvent,
12
12
  GeolocatorWebConfiguration,
13
13
  )
14
+
15
+ __all__ = [
16
+ "ForegroundNotificationConfiguration",
17
+ "Geolocator",
18
+ "GeolocatorAndroidConfiguration",
19
+ "GeolocatorConfiguration",
20
+ "GeolocatorIosActivityType",
21
+ "GeolocatorIosConfiguration",
22
+ "GeolocatorPermissionStatus",
23
+ "GeolocatorPosition",
24
+ "GeolocatorPositionAccuracy",
25
+ "GeolocatorPositionChangeEvent",
26
+ "GeolocatorWebConfiguration",
27
+ ]
@@ -19,7 +19,8 @@ class Geolocator(ft.Service):
19
19
  """
20
20
  A control that allows you to fetch GPS data from your device.
21
21
 
22
- This control is non-visual and should be added to `page.overlay` list.
22
+ This control is non-visual and should be added to
23
+ [`Page.overlay`][flet.] list.
23
24
  """
24
25
 
25
26
  configuration: Optional[GeolocatorConfiguration] = None
@@ -27,23 +28,22 @@ class Geolocator(ft.Service):
27
28
  Some additional configuration.
28
29
  """
29
30
 
30
- on_position_change: ft.OptionalEventHandler[
31
- GeolocatorPositionChangeEvent["Geolocator"]
32
- ] = None
31
+ on_position_change: Optional[ft.EventHandler[GeolocatorPositionChangeEvent]] = None
33
32
  """
34
33
  Fires when the position of the device changes.
35
-
36
- Event handler argument is of type [`GeolocatorPositionChangeEvent`][(p).].
37
34
  """
38
35
 
39
- on_error: ft.OptionalControlEventHandler["Geolocator"] = None
36
+ on_error: Optional[ft.ControlEventHandler["Geolocator"]] = None
40
37
  """
41
38
  Fires when an error occurs.
42
-
43
- The `data` property of the event handler argument contains information on the error.
39
+
40
+ The [`data`][flet.Event.data] property of the event
41
+ handler argument contains information on the error.
44
42
  """
45
43
 
46
- position: Optional[GeolocatorPosition] = field(default=None, init=False) # todo: make this property readonly
44
+ position: Optional[GeolocatorPosition] = field(
45
+ default=None, init=False
46
+ ) # TODO: make this property readonly
47
47
  """
48
48
  The current position of the device. (read-only)
49
49
 
@@ -58,19 +58,24 @@ class Geolocator(ft.Service):
58
58
  """
59
59
  Gets the current position of the device with the desired accuracy and settings.
60
60
 
61
+ Note:
62
+ Depending on the availability of different location services,
63
+ this can take several seconds. It is recommended to call the
64
+ [`get_last_known_position`][..] method first to receive a
65
+ known/cached position and update it with the result of the
66
+ [`get_current_position`][..] method.
67
+
61
68
  Args:
62
69
  configuration: Additional configuration for the location request.
63
- If not specified, then the [`Geolocator.configuration`][(p).] property is used.
70
+ If not specified, then the [`Geolocator.configuration`][(p).]
71
+ property is used.
64
72
  timeout: The maximum amount of time (in seconds) to wait for a response.
73
+
65
74
  Returns:
66
75
  The current position of the device as a [`GeolocatorPosition`][(p).].
76
+
67
77
  Raises:
68
78
  TimeoutError: If the request times out.
69
-
70
- Note:
71
- Depending on the availability of different location services, this can take several seconds.
72
- It is recommended to call the [`get_last_known_position`][..] method first to receive a
73
- known/cached position and update it with the result of the [`get_current_position`][..] method.
74
79
  """
75
80
  r = await self._invoke_method_async(
76
81
  method_name="get_current_position",
@@ -84,21 +89,27 @@ class Geolocator(ft.Service):
84
89
  ) -> GeolocatorPosition:
85
90
  """
86
91
  Gets the last known position stored on the user's device.
87
- The accuracy can be defined using the [`Geolocator.configuration`][(p).] property.
92
+ The accuracy can be defined using the
93
+ [`Geolocator.configuration`][(p).] property.
88
94
 
89
95
  Note:
90
96
  This method is not supported on web plaform.
91
97
 
92
98
  Args:
93
99
  timeout: The maximum amount of time (in seconds) to wait for a response.
100
+
94
101
  Returns:
95
- `True` if the app's settings were opened successfully, `False` otherwise.
102
+ The last known position of the device as a [`GeolocatorPosition`][(p).].
103
+
96
104
  Raises:
97
105
  AssertionError: If invoked on a web platform.
98
106
  TimeoutError: If the request times out.
99
107
  """
100
108
  assert not self.page.web, "get_last_known_position is not supported on web"
101
- r = await self._invoke_method_async("get_last_known_position", timeout=timeout)
109
+ r = await self._invoke_method_async(
110
+ "get_last_known_position",
111
+ timeout=timeout,
112
+ )
102
113
  return GeolocatorPosition(**r)
103
114
 
104
115
  async def get_permission_status_async(
@@ -109,12 +120,17 @@ class Geolocator(ft.Service):
109
120
 
110
121
  Args:
111
122
  timeout: The maximum amount of time (in seconds) to wait for a response.
123
+
112
124
  Returns:
113
125
  The status of the permission.
126
+
114
127
  Raises:
115
128
  TimeoutError: If the request times out.
116
129
  """
117
- r = await self._invoke_method_async("get_permission_status", timeout=timeout)
130
+ r = await self._invoke_method_async(
131
+ "get_permission_status",
132
+ timeout=timeout,
133
+ )
118
134
  return GeolocatorPermissionStatus(r)
119
135
 
120
136
  async def request_permission_async(
@@ -125,12 +141,17 @@ class Geolocator(ft.Service):
125
141
 
126
142
  Args:
127
143
  timeout: The maximum amount of time (in seconds) to wait for a response.
144
+
128
145
  Returns:
129
146
  The status of the permission request.
147
+
130
148
  Raises:
131
149
  TimeoutError: If the request times out.
132
150
  """
133
- r = await self._invoke_method_async("request_permission", timeout=timeout)
151
+ r = await self._invoke_method_async(
152
+ "request_permission",
153
+ timeout=timeout,
154
+ )
134
155
  return GeolocatorPermissionStatus(r)
135
156
 
136
157
  async def is_location_service_enabled_async(self, timeout: float = 10) -> bool:
@@ -139,8 +160,10 @@ class Geolocator(ft.Service):
139
160
 
140
161
  Args:
141
162
  timeout: The maximum amount of time (in seconds) to wait for a response.
163
+
142
164
  Returns:
143
165
  `True` if location service is enabled, `False` otherwise.
166
+
144
167
  Raises:
145
168
  TimeoutError: If the request times out.
146
169
  """
@@ -157,14 +180,19 @@ class Geolocator(ft.Service):
157
180
 
158
181
  Args:
159
182
  timeout: The maximum amount of time (in seconds) to wait for a response.
183
+
160
184
  Returns:
161
185
  `True` if the app's settings were opened successfully, `False` otherwise.
186
+
162
187
  Raises:
163
188
  AssertionError: If invoked on a web platform.
164
189
  TimeoutError: If the request times out.
165
190
  """
166
191
  assert not self.page.web, "open_app_settings is not supported on web"
167
- return await self._invoke_method_async("open_app_settings", timeout=timeout)
192
+ return await self._invoke_method_async(
193
+ "open_app_settings",
194
+ timeout=timeout,
195
+ )
168
196
 
169
197
  def open_location_settings(self, timeout: float = 10):
170
198
  """
@@ -175,8 +203,10 @@ class Geolocator(ft.Service):
175
203
 
176
204
  Args:
177
205
  timeout: The maximum amount of time (in seconds) to wait for a response.
206
+
178
207
  Returns:
179
208
  `True` if the device's settings were opened successfully, `False` otherwise.
209
+
180
210
  Raises:
181
211
  AssertionError: If invoked on a web platform.
182
212
  TimeoutError: If the request times out.
@@ -192,14 +222,19 @@ class Geolocator(ft.Service):
192
222
 
193
223
  Args:
194
224
  timeout: The maximum amount of time (in seconds) to wait for a response.
225
+
195
226
  Returns:
196
227
  `True` if the device's settings were opened successfully, `False` otherwise.
228
+
197
229
  Raises:
198
230
  AssertionError: If invoked on a web platform.
199
231
  TimeoutError: If the request times out.
200
232
  """
201
233
  assert not self.page.web, "open_location_settings is not supported on web"
202
- await self._invoke_method_async("open_location_settings", timeout=timeout)
234
+ await self._invoke_method_async(
235
+ "open_location_settings",
236
+ timeout=timeout,
237
+ )
203
238
 
204
239
  async def distance_between_async(
205
240
  self,
@@ -221,8 +256,10 @@ class Geolocator(ft.Service):
221
256
  end_latitude: The latitude of the ending point, in degrees.
222
257
  end_longitude: The longitude of the ending point, in degrees.
223
258
  timeout: The maximum amount of time (in seconds) to wait for a response.
259
+
224
260
  Returns:
225
261
  The distance between the coordinates in meters.
262
+
226
263
  Raises:
227
264
  TimeoutError: If the request times out.
228
265
  """
flet_geolocator/types.py CHANGED
@@ -1,21 +1,24 @@
1
1
  import datetime
2
2
  from dataclasses import dataclass, field
3
3
  from enum import Enum
4
- from typing import Optional
4
+ from typing import TYPE_CHECKING, Optional
5
5
 
6
6
  import flet as ft
7
7
 
8
+ if TYPE_CHECKING:
9
+ from .geolocator import Geolocator # noqa
10
+
8
11
  __all__ = [
9
- "GeolocatorPositionAccuracy",
10
- "GeolocatorPermissionStatus",
11
- "GeolocatorIosActivityType",
12
- "GeolocatorPosition",
12
+ "ForegroundNotificationConfiguration",
13
+ "GeolocatorAndroidConfiguration",
13
14
  "GeolocatorConfiguration",
14
- "GeolocatorWebConfiguration",
15
+ "GeolocatorIosActivityType",
15
16
  "GeolocatorIosConfiguration",
16
- "GeolocatorAndroidConfiguration",
17
+ "GeolocatorPermissionStatus",
18
+ "GeolocatorPosition",
19
+ "GeolocatorPositionAccuracy",
17
20
  "GeolocatorPositionChangeEvent",
18
- "ForegroundNotificationConfiguration",
21
+ "GeolocatorWebConfiguration",
19
22
  ]
20
23
 
21
24
 
@@ -89,7 +92,7 @@ class GeolocatorPermissionStatus(Enum):
89
92
 
90
93
  DENIED = "denied"
91
94
  """
92
- Permission to access the device's location is denied.
95
+ Permission to access the device's location is denied.
93
96
 
94
97
  The app should try to request permission using the [`Geolocator.request_permission`][(p).] method.
95
98
  """
@@ -175,7 +178,7 @@ class GeolocatorPosition:
175
178
  """
176
179
  The speed at which the device is traveling in meters per second over ground.
177
180
 
178
- The speed is not available on all devices.
181
+ The speed is not available on all devices.
179
182
  In these cases the value is `0.0`.
180
183
  """
181
184
 
@@ -183,7 +186,7 @@ class GeolocatorPosition:
183
186
  """
184
187
  The altitude of the device in meters.
185
188
 
186
- The altitude is not available on all devices.
189
+ The altitude is not available on all devices.
187
190
  In these cases the returned value is `0.0`.
188
191
  """
189
192
 
@@ -196,7 +199,7 @@ class GeolocatorPosition:
196
199
  """
197
200
  The estimated horizontal accuracy of the position in meters.
198
201
 
199
- The accuracy is not available on all devices.
202
+ The accuracy is not available on all devices.
200
203
  In these cases the value is `0.0`.
201
204
  """
202
205
 
@@ -204,7 +207,7 @@ class GeolocatorPosition:
204
207
  """
205
208
  The estimated vertical accuracy of the position in meters.
206
209
 
207
- The accuracy is not available on all devices.
210
+ The accuracy is not available on all devices.
208
211
  In these cases the value is `0.0`.
209
212
  """
210
213
 
@@ -212,7 +215,7 @@ class GeolocatorPosition:
212
215
  """
213
216
  The heading in which the device is traveling in degrees.
214
217
 
215
- The heading is not available on all devices.
218
+ The heading is not available on all devices.
216
219
  In these cases the value is `0.0`.
217
220
  """
218
221
 
@@ -220,7 +223,7 @@ class GeolocatorPosition:
220
223
  """
221
224
  The estimated heading accuracy of the position in degrees.
222
225
 
223
- The heading accuracy is not available on all devices.
226
+ The heading accuracy is not available on all devices.
224
227
  In these cases the value is `0.0`.
225
228
  """
226
229
 
@@ -228,7 +231,7 @@ class GeolocatorPosition:
228
231
  """
229
232
  The estimated speed accuracy of this position, in meters per second.
230
233
 
231
- The speed accuracy is not available on all devices.
234
+ The speed accuracy is not available on all devices.
232
235
  In these cases the value is `0.0`.
233
236
  """
234
237
 
@@ -237,7 +240,7 @@ class GeolocatorPosition:
237
240
  The floor specifies the floor of the building on which the device is
238
241
  located.
239
242
 
240
- The floor property is only available on iOS and only when the information is available.
243
+ The floor property is only available on iOS and only when the information is available.
241
244
  In all other cases this value will be `None`.
242
245
  """
243
246
 
@@ -261,7 +264,7 @@ class GeolocatorConfiguration:
261
264
  """
262
265
  The minimum distance (measured in meters) a device must move
263
266
  horizontally before an update event is generated.
264
-
267
+
265
268
  Set to `0` when you want to be notified of all movements.
266
269
  """
267
270
 
@@ -280,8 +283,8 @@ class GeolocatorWebConfiguration(GeolocatorConfiguration):
280
283
  maximum_age: ft.DurationValue = field(default_factory=lambda: ft.Duration())
281
284
  """
282
285
  A value indicating the maximum age of a possible cached
283
- position that is acceptable to return. If set to 0, it means
284
- that the device cannot use a cached position and must
286
+ position that is acceptable to return. If set to 0, it means
287
+ that the device cannot use a cached position and must
285
288
  attempt to retrieve the real current position.
286
289
  """
287
290
 
@@ -300,7 +303,7 @@ class GeolocatorIosConfiguration(GeolocatorConfiguration):
300
303
  """
301
304
  Allows the location manager to pause updates to improve battery life
302
305
  on the target device without sacrificing location data.
303
- When this property is set to `true`, the location manager pauses updates
306
+ When this property is set to `True`, the location manager pauses updates
304
307
  (and powers down the appropriate hardware) at times when the
305
308
  location data is unlikely to change.
306
309
  """
@@ -309,7 +312,7 @@ class GeolocatorIosConfiguration(GeolocatorConfiguration):
309
312
  """
310
313
  Flag to ask the Apple OS to show the background location indicator (iOS only)
311
314
  if app starts up and background and requests the users location.
312
-
315
+
313
316
  For this setting to work and for the location to be retrieved the user must
314
317
  have granted "always" permissions for location retrieval.
315
318
  """
@@ -317,7 +320,7 @@ class GeolocatorIosConfiguration(GeolocatorConfiguration):
317
320
  allow_background_location_updates: bool = True
318
321
  """
319
322
  Flag to allow the app to receive location updates in the background (iOS only)
320
-
323
+
321
324
  Note:
322
325
  For this setting to work `Info.plist` should contain the following keys:
323
326
  - UIBackgroundModes and the value should contain "location"
@@ -390,13 +393,13 @@ class GeolocatorAndroidConfiguration(GeolocatorConfiguration):
390
393
  Whether altitude should be calculated as MSL (EGM2008) from NMEA messages
391
394
  and reported as the altitude instead of using the geoidal height (WSG84). Setting
392
395
  this property true will help to align Android altitude to that of iOS which uses MSL.
393
-
396
+
394
397
  If the NMEA message is empty then the altitude reported will still be the standard WSG84
395
398
  altitude from the GPS receiver.
396
-
399
+
397
400
  MSL Altitude is only available starting from Android N and not all devices support
398
401
  NMEA message returning $GPGGA sequences.
399
-
402
+
400
403
  This property only works with position stream updates and has no effect when getting the
401
404
  current position or last known position.
402
405
  """
@@ -405,7 +408,7 @@ class GeolocatorAndroidConfiguration(GeolocatorConfiguration):
405
408
 
406
409
 
407
410
  @dataclass
408
- class GeolocatorPositionChangeEvent(ft.Event[ft.EventControlType]):
411
+ class GeolocatorPositionChangeEvent(ft.Event["Geolocator"]):
409
412
  position: GeolocatorPosition
410
413
  """
411
414
  The current/new position of the device.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-geolocator
3
- Version: 0.2.0.dev30
3
+ Version: 0.2.0.dev45
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
@@ -11,7 +11,7 @@ Project-URL: Issues, https://github.com/flet-dev/flet-geolocator/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
14
+ Requires-Dist: flet>=0.70.0.dev0
15
15
  Dynamic: license-file
16
16
 
17
17
  # flet-geolocator
@@ -1,18 +1,18 @@
1
- flet_geolocator/__init__.py,sha256=BIeg3bpvgkQOZXCqUwlhqUKqKaGU_twfOfo8oDrpwZ8,382
2
- flet_geolocator/geolocator.py,sha256=KXYlPVx5-fsxq3K3O1MsZ2ubJF-tTI7o36q6lfY2oIc,8639
3
- flet_geolocator/types.py,sha256=zinwlph0hgeDZmXGzUjsu8UFwDpsHiOYdkIWDJcm-fM,12954
4
- flet_geolocator-0.2.0.dev30.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
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
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=dX8RqyaIk3tLp7XZvm00d_Crmjxin8nzal3Twyx-C9k,24963
10
- flutter/flet_geolocator/pubspec.yaml,sha256=kL1fL4C3bpqPPKxkFgqrk6ZQJIW3lZNNFB1qt46Zsvo,527
9
+ flutter/flet_geolocator/pubspec.lock,sha256=8dXtw29nn-a9Dav6RZdzrZyphDUhFlEW4kwgZ65eQFk,26406
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
13
  flutter/flet_geolocator/lib/src/geolocator.dart,sha256=R0DznK7TJVU4S6QpSdR3zbOygnmM7l-IKL_NxTKrRnQ,3268
14
14
  flutter/flet_geolocator/lib/src/utils/geolocator.dart,sha256=BZxf9l1CIvuNEnZMVONUxAnGVSXl2XY1zihP1gH6qdo,3999
15
- flet_geolocator-0.2.0.dev30.dist-info/METADATA,sha256=iDOgsZe_9ocA_RWNnq_2fNBXkkpn3cYRJAasJRyj0L8,2174
16
- flet_geolocator-0.2.0.dev30.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- flet_geolocator-0.2.0.dev30.dist-info/top_level.txt,sha256=MuAs94VDBb5Btg9cvN83W2sHm_YslMQ2JOKZhqm88cs,24
18
- flet_geolocator-0.2.0.dev30.dist-info/RECORD,,
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,,
@@ -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:
@@ -133,8 +141,8 @@ packages:
133
141
  dependency: "direct main"
134
142
  description:
135
143
  path: "packages/flet"
136
- ref: v1
137
- resolved-ref: f76d1c5dd805ec81a5a5d63300d61413a5bf27ae
144
+ ref: main
145
+ resolved-ref: cf8823c5d766ea7866480986aa3ee871f4091e78
138
146
  url: "https://github.com/flet-dev/flet.git"
139
147
  source: git
140
148
  version: "0.70.0"
@@ -155,10 +163,10 @@ packages:
155
163
  dependency: "direct dev"
156
164
  description:
157
165
  name: flutter_lints
158
- sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04
166
+ sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
159
167
  url: "https://pub.dev"
160
168
  source: hosted
161
- version: "2.0.3"
169
+ version: "3.0.2"
162
170
  flutter_localizations:
163
171
  dependency: transitive
164
172
  description: flutter
@@ -198,22 +206,30 @@ packages:
198
206
  description: flutter
199
207
  source: sdk
200
208
  version: "0.0.0"
209
+ geoclue:
210
+ dependency: transitive
211
+ description:
212
+ name: geoclue
213
+ sha256: c2a998c77474fc57aa00c6baa2928e58f4b267649057a1c76738656e9dbd2a7f
214
+ url: "https://pub.dev"
215
+ source: hosted
216
+ version: "0.1.1"
201
217
  geolocator:
202
218
  dependency: "direct main"
203
219
  description:
204
220
  name: geolocator
205
- sha256: ee2212a3df8292ec4c90b91183b8001d3f5a800823c974b570c5f9344ca320dc
221
+ sha256: "79939537046c9025be47ec645f35c8090ecadb6fe98eba146a0d25e8c1357516"
206
222
  url: "https://pub.dev"
207
223
  source: hosted
208
- version: "14.0.1"
224
+ version: "14.0.2"
209
225
  geolocator_android:
210
226
  dependency: transitive
211
227
  description:
212
228
  name: geolocator_android
213
- sha256: "114072db5d1dce0ec0b36af2697f55c133bc89a2c8dd513e137c0afe59696ed4"
229
+ sha256: "179c3cb66dfa674fc9ccbf2be872a02658724d1c067634e2c427cf6df7df901a"
214
230
  url: "https://pub.dev"
215
231
  source: hosted
216
- version: "5.0.1+1"
232
+ version: "5.0.2"
217
233
  geolocator_apple:
218
234
  dependency: transitive
219
235
  description:
@@ -222,6 +238,14 @@ packages:
222
238
  url: "https://pub.dev"
223
239
  source: hosted
224
240
  version: "2.3.13"
241
+ geolocator_linux:
242
+ dependency: transitive
243
+ description:
244
+ name: geolocator_linux
245
+ sha256: c4e966f0a7a87e70049eac7a2617f9e16fd4c585a26e4330bdfc3a71e6a721f3
246
+ url: "https://pub.dev"
247
+ source: hosted
248
+ version: "0.2.3"
225
249
  geolocator_platform_interface:
226
250
  dependency: transitive
227
251
  description:
@@ -246,6 +270,14 @@ packages:
246
270
  url: "https://pub.dev"
247
271
  source: hosted
248
272
  version: "0.2.5"
273
+ gsettings:
274
+ dependency: transitive
275
+ description:
276
+ name: gsettings
277
+ sha256: "1b0ce661f5436d2db1e51f3c4295a49849f03d304003a7ba177d01e3a858249c"
278
+ url: "https://pub.dev"
279
+ source: hosted
280
+ version: "0.2.8"
249
281
  highlight:
250
282
  dependency: transitive
251
283
  description:
@@ -314,10 +346,10 @@ packages:
314
346
  dependency: transitive
315
347
  description:
316
348
  name: lints
317
- sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
349
+ sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
318
350
  url: "https://pub.dev"
319
351
  source: hosted
320
- version: "2.1.1"
352
+ version: "3.0.0"
321
353
  logging:
322
354
  dependency: transitive
323
355
  description:
@@ -374,6 +406,22 @@ packages:
374
406
  url: "https://pub.dev"
375
407
  source: hosted
376
408
  version: "1.0.0"
409
+ package_info_plus:
410
+ dependency: transitive
411
+ description:
412
+ name: package_info_plus
413
+ sha256: "7976bfe4c583170d6cdc7077e3237560b364149fcd268b5f53d95a991963b191"
414
+ url: "https://pub.dev"
415
+ source: hosted
416
+ version: "8.3.0"
417
+ package_info_plus_platform_interface:
418
+ dependency: transitive
419
+ description:
420
+ name: package_info_plus_platform_interface
421
+ sha256: "6c935fb612dff8e3cc9632c2b301720c77450a126114126ffaafe28d2e87956c"
422
+ url: "https://pub.dev"
423
+ source: hosted
424
+ version: "3.2.0"
377
425
  path:
378
426
  dependency: transitive
379
427
  description:
@@ -807,10 +855,10 @@ packages:
807
855
  dependency: transitive
808
856
  description:
809
857
  name: window_manager
810
- sha256: "51d50168ab267d344b975b15390426b1243600d436770d3f13de67e55b05ec16"
858
+ sha256: "7eb6d6c4164ec08e1bf978d6e733f3cebe792e2a23fb07cbca25c2872bfdbdcd"
811
859
  url: "https://pub.dev"
812
860
  source: hosted
813
- version: "0.5.0"
861
+ version: "0.5.1"
814
862
  window_to_front:
815
863
  dependency: transitive
816
864
  description:
@@ -16,8 +16,8 @@ dependencies:
16
16
  git:
17
17
  url: https://github.com/flet-dev/flet.git
18
18
  path: packages/flet
19
- ref: v1
19
+ ref: main
20
20
  dev_dependencies:
21
21
  flutter_test:
22
22
  sdk: flutter
23
- flutter_lints: ^2.0.0
23
+ flutter_lints: ^3.0.0