flet-geolocator 0.2.0.dev45__py3-none-any.whl → 0.2.0.dev504__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.
- flet_geolocator/__init__.py +2 -2
- flet_geolocator/geolocator.py +17 -43
- flet_geolocator/types.py +19 -14
- {flet_geolocator-0.2.0.dev45.dist-info → flet_geolocator-0.2.0.dev504.dist-info}/METADATA +7 -5
- flet_geolocator-0.2.0.dev504.dist-info/RECORD +18 -0
- flutter/flet_geolocator/lib/src/geolocator.dart +1 -1
- flutter/flet_geolocator/pubspec.lock +54 -46
- flet_geolocator-0.2.0.dev45.dist-info/RECORD +0 -18
- {flet_geolocator-0.2.0.dev45.dist-info → flet_geolocator-0.2.0.dev504.dist-info}/WHEEL +0 -0
- {flet_geolocator-0.2.0.dev45.dist-info → flet_geolocator-0.2.0.dev504.dist-info}/licenses/LICENSE +0 -0
- {flet_geolocator-0.2.0.dev45.dist-info → flet_geolocator-0.2.0.dev504.dist-info}/top_level.txt +0 -0
flet_geolocator/__init__.py
CHANGED
flet_geolocator/geolocator.py
CHANGED
|
@@ -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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
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.
|
|
208
|
+
return await self._invoke_method(
|
|
235
209
|
"open_location_settings",
|
|
236
210
|
timeout=timeout,
|
|
237
211
|
)
|
|
238
212
|
|
|
239
|
-
async def
|
|
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.
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
3
|
+
Version: 0.2.0.dev504
|
|
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
|
[](https://pepy.tech/project/flet-geolocator)
|
|
21
21
|
[](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
|
-
##
|
|
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
|
-
|
|
72
|
+
### Examples
|
|
71
73
|
|
|
72
|
-
For examples, see [
|
|
74
|
+
For examples, see [these](./examples).
|
|
@@ -0,0 +1,18 @@
|
|
|
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.dev504.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
5
|
+
flutter/flet_geolocator/CHANGELOG.md,sha256=66sWepPaeTc9_lzcYIGU55AlxSU5Z1XVtknXpzd_-p8,40
|
|
6
|
+
flutter/flet_geolocator/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
7
|
+
flutter/flet_geolocator/README.md,sha256=sYHQP6tUk1CzbWAaqucJStoRvAsgp36IqjaIVoXCiF4,70
|
|
8
|
+
flutter/flet_geolocator/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
|
|
9
|
+
flutter/flet_geolocator/pubspec.lock,sha256=FaMHKOMmkfDAhKEAk3AaKaFzaQYmU6kjAfI6kocBuuk,26646
|
|
10
|
+
flutter/flet_geolocator/pubspec.yaml,sha256=de-hyLxpdTX-naxnyd4D6cUAZW82jxodApSjQ0hFdWk,529
|
|
11
|
+
flutter/flet_geolocator/lib/flet_geolocator.dart,sha256=f5rUWcdvXkySvVjv50N-m0neLWB3P2okmEWxGg9r9Vk,70
|
|
12
|
+
flutter/flet_geolocator/lib/src/extension.dart,sha256=x8zm0Pt3ZsyTj7q8MImtLTIK_kCAoaqYaJ41NWPug-8,314
|
|
13
|
+
flutter/flet_geolocator/lib/src/geolocator.dart,sha256=GiN-E11OqatsYDIOwIgscrBhK9OPcHduttnuED6cqHs,3275
|
|
14
|
+
flutter/flet_geolocator/lib/src/utils/geolocator.dart,sha256=BZxf9l1CIvuNEnZMVONUxAnGVSXl2XY1zihP1gH6qdo,3999
|
|
15
|
+
flet_geolocator-0.2.0.dev504.dist-info/METADATA,sha256=hD29AhHInBwOD3IdiViftTt78zzNp7GuGPR1nTrqqb4,2193
|
|
16
|
+
flet_geolocator-0.2.0.dev504.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
flet_geolocator-0.2.0.dev504.dist-info/top_level.txt,sha256=MuAs94VDBb5Btg9cvN83W2sHm_YslMQ2JOKZhqm88cs,24
|
|
18
|
+
flet_geolocator-0.2.0.dev504.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:
|
|
@@ -101,10 +101,10 @@ packages:
|
|
|
101
101
|
dependency: transitive
|
|
102
102
|
description:
|
|
103
103
|
name: fake_async
|
|
104
|
-
sha256: "
|
|
104
|
+
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
|
|
105
105
|
url: "https://pub.dev"
|
|
106
106
|
source: hosted
|
|
107
|
-
version: "1.3.
|
|
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:
|
|
128
|
+
sha256: e7e16c9d15c36330b94ca0e2ad8cb61f93cd5282d0158c09805aed13b5452f22
|
|
129
129
|
url: "https://pub.dev"
|
|
130
130
|
source: hosted
|
|
131
|
-
version: "10.2
|
|
131
|
+
version: "10.3.2"
|
|
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:
|
|
145
|
+
resolved-ref: "27cea68736639eff49200813838bba3b2bd4e2b0"
|
|
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:
|
|
187
|
+
sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
|
|
188
188
|
url: "https://pub.dev"
|
|
189
189
|
source: hosted
|
|
190
|
-
version: "2.0.
|
|
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:
|
|
309
|
+
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
|
|
310
310
|
url: "https://pub.dev"
|
|
311
311
|
source: hosted
|
|
312
|
-
version: "0.
|
|
312
|
+
version: "0.20.2"
|
|
313
313
|
json_annotation:
|
|
314
314
|
dependency: transitive
|
|
315
315
|
description:
|
|
@@ -322,26 +322,26 @@ packages:
|
|
|
322
322
|
dependency: transitive
|
|
323
323
|
description:
|
|
324
324
|
name: leak_tracker
|
|
325
|
-
sha256:
|
|
325
|
+
sha256: "8dcda04c3fc16c14f48a7bb586d4be1f0d1572731b6d81d51772ef47c02081e0"
|
|
326
326
|
url: "https://pub.dev"
|
|
327
327
|
source: hosted
|
|
328
|
-
version: "
|
|
328
|
+
version: "11.0.1"
|
|
329
329
|
leak_tracker_flutter_testing:
|
|
330
330
|
dependency: transitive
|
|
331
331
|
description:
|
|
332
332
|
name: leak_tracker_flutter_testing
|
|
333
|
-
sha256:
|
|
333
|
+
sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
|
|
334
334
|
url: "https://pub.dev"
|
|
335
335
|
source: hosted
|
|
336
|
-
version: "3.0.
|
|
336
|
+
version: "3.0.10"
|
|
337
337
|
leak_tracker_testing:
|
|
338
338
|
dependency: transitive
|
|
339
339
|
description:
|
|
340
340
|
name: leak_tracker_testing
|
|
341
|
-
sha256: "
|
|
341
|
+
sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
|
|
342
342
|
url: "https://pub.dev"
|
|
343
343
|
source: hosted
|
|
344
|
-
version: "3.0.
|
|
344
|
+
version: "3.0.2"
|
|
345
345
|
lints:
|
|
346
346
|
dependency: transitive
|
|
347
347
|
description:
|
|
@@ -410,18 +410,18 @@ packages:
|
|
|
410
410
|
dependency: transitive
|
|
411
411
|
description:
|
|
412
412
|
name: package_info_plus
|
|
413
|
-
sha256: "
|
|
413
|
+
sha256: "16eee997588c60225bda0488b6dcfac69280a6b7a3cf02c741895dd370a02968"
|
|
414
414
|
url: "https://pub.dev"
|
|
415
415
|
source: hosted
|
|
416
|
-
version: "8.3.
|
|
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: "
|
|
421
|
+
sha256: "202a487f08836a592a6bd4f901ac69b3a8f146af552bbd14407b6b41e1c3f086"
|
|
422
422
|
url: "https://pub.dev"
|
|
423
423
|
source: hosted
|
|
424
|
-
version: "3.2.
|
|
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: "
|
|
461
|
+
sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
|
|
462
462
|
url: "https://pub.dev"
|
|
463
463
|
source: hosted
|
|
464
|
-
version: "2.4.
|
|
464
|
+
version: "2.4.2"
|
|
465
465
|
path_provider_linux:
|
|
466
466
|
dependency: transitive
|
|
467
467
|
description:
|
|
@@ -514,10 +514,10 @@ packages:
|
|
|
514
514
|
dependency: transitive
|
|
515
515
|
description:
|
|
516
516
|
name: provider
|
|
517
|
-
sha256: "
|
|
517
|
+
sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272"
|
|
518
518
|
url: "https://pub.dev"
|
|
519
519
|
source: hosted
|
|
520
|
-
version: "6.1.5"
|
|
520
|
+
version: "6.1.5+1"
|
|
521
521
|
screen_retriever:
|
|
522
522
|
dependency: transitive
|
|
523
523
|
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: "
|
|
573
|
+
sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
|
|
566
574
|
url: "https://pub.dev"
|
|
567
575
|
source: hosted
|
|
568
|
-
version: "6.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: "
|
|
597
|
+
sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
|
|
590
598
|
url: "https://pub.dev"
|
|
591
599
|
source: hosted
|
|
592
|
-
version: "2.4.
|
|
600
|
+
version: "2.4.11"
|
|
593
601
|
shared_preferences_foundation:
|
|
594
602
|
dependency: transitive
|
|
595
603
|
description:
|
|
@@ -687,10 +695,10 @@ packages:
|
|
|
687
695
|
dependency: transitive
|
|
688
696
|
description:
|
|
689
697
|
name: test_api
|
|
690
|
-
sha256:
|
|
698
|
+
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
|
|
691
699
|
url: "https://pub.dev"
|
|
692
700
|
source: hosted
|
|
693
|
-
version: "0.7.
|
|
701
|
+
version: "0.7.6"
|
|
694
702
|
typed_data:
|
|
695
703
|
dependency: transitive
|
|
696
704
|
description:
|
|
@@ -711,18 +719,18 @@ packages:
|
|
|
711
719
|
dependency: transitive
|
|
712
720
|
description:
|
|
713
721
|
name: url_launcher_android
|
|
714
|
-
sha256: "
|
|
722
|
+
sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
|
|
715
723
|
url: "https://pub.dev"
|
|
716
724
|
source: hosted
|
|
717
|
-
version: "6.3.
|
|
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:
|
|
730
|
+
sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
|
|
723
731
|
url: "https://pub.dev"
|
|
724
732
|
source: hosted
|
|
725
|
-
version: "6.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:
|
|
746
|
+
sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
|
|
739
747
|
url: "https://pub.dev"
|
|
740
748
|
source: hosted
|
|
741
|
-
version: "3.2.
|
|
749
|
+
version: "3.2.3"
|
|
742
750
|
url_launcher_platform_interface:
|
|
743
751
|
dependency: transitive
|
|
744
752
|
description:
|
|
@@ -791,26 +799,26 @@ packages:
|
|
|
791
799
|
dependency: transitive
|
|
792
800
|
description:
|
|
793
801
|
name: vector_graphics_compiler
|
|
794
|
-
sha256:
|
|
802
|
+
sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
|
|
795
803
|
url: "https://pub.dev"
|
|
796
804
|
source: hosted
|
|
797
|
-
version: "1.1.
|
|
805
|
+
version: "1.1.18"
|
|
798
806
|
vector_math:
|
|
799
807
|
dependency: transitive
|
|
800
808
|
description:
|
|
801
809
|
name: vector_math
|
|
802
|
-
sha256:
|
|
810
|
+
sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
|
|
803
811
|
url: "https://pub.dev"
|
|
804
812
|
source: hosted
|
|
805
|
-
version: "2.
|
|
813
|
+
version: "2.2.0"
|
|
806
814
|
vm_service:
|
|
807
815
|
dependency: transitive
|
|
808
816
|
description:
|
|
809
817
|
name: vm_service
|
|
810
|
-
sha256: "
|
|
818
|
+
sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
|
|
811
819
|
url: "https://pub.dev"
|
|
812
820
|
source: hosted
|
|
813
|
-
version: "
|
|
821
|
+
version: "15.0.2"
|
|
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: "
|
|
850
|
+
sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
|
|
843
851
|
url: "https://pub.dev"
|
|
844
852
|
source: hosted
|
|
845
|
-
version: "5.
|
|
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.
|
|
895
|
+
dart: ">=3.8.0 <4.0.0"
|
|
888
896
|
flutter: ">=3.29.0"
|
|
@@ -1,18 +0,0 @@
|
|
|
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
|
-
flutter/flet_geolocator/CHANGELOG.md,sha256=66sWepPaeTc9_lzcYIGU55AlxSU5Z1XVtknXpzd_-p8,40
|
|
6
|
-
flutter/flet_geolocator/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
7
|
-
flutter/flet_geolocator/README.md,sha256=sYHQP6tUk1CzbWAaqucJStoRvAsgp36IqjaIVoXCiF4,70
|
|
8
|
-
flutter/flet_geolocator/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
|
|
9
|
-
flutter/flet_geolocator/pubspec.lock,sha256=8dXtw29nn-a9Dav6RZdzrZyphDUhFlEW4kwgZ65eQFk,26406
|
|
10
|
-
flutter/flet_geolocator/pubspec.yaml,sha256=de-hyLxpdTX-naxnyd4D6cUAZW82jxodApSjQ0hFdWk,529
|
|
11
|
-
flutter/flet_geolocator/lib/flet_geolocator.dart,sha256=f5rUWcdvXkySvVjv50N-m0neLWB3P2okmEWxGg9r9Vk,70
|
|
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
|
|
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,,
|
|
File without changes
|
{flet_geolocator-0.2.0.dev45.dist-info → flet_geolocator-0.2.0.dev504.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{flet_geolocator-0.2.0.dev45.dist-info → flet_geolocator-0.2.0.dev504.dist-info}/top_level.txt
RENAMED
|
File without changes
|