flet-permission-handler 0.2.0.dev34__py3-none-any.whl → 0.2.0.dev55__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-permission-handler might be problematic. Click here for more details.

@@ -1,2 +1,8 @@
1
1
  from .permission_handler import PermissionHandler
2
2
  from .types import Permission, PermissionStatus
3
+
4
+ __all__ = [
5
+ "Permission",
6
+ "PermissionHandler",
7
+ "PermissionStatus",
8
+ ]
@@ -12,10 +12,12 @@ class PermissionHandler(ft.Service):
12
12
  """
13
13
  Manages permissions for the application.
14
14
 
15
- This control is non-visual and should be added to `Page.services` list.
15
+ This control is non-visual and should be added
16
+ to [`Page.services`][flet.Page.services] list.
16
17
 
17
- Note:
18
+ Danger: Platform support
18
19
  Currently only supported on Android, iOS, Windows, and Web platforms.
20
+
19
21
  Raises:
20
22
  FletUnsupportedPlatformException: If the platform is not supported.
21
23
  """
@@ -34,7 +36,8 @@ class PermissionHandler(ft.Service):
34
36
  ]
35
37
  ):
36
38
  raise ft.FletUnsupportedPlatformException(
37
- "PermissionHandler is currently only supported on Android, iOS, Windows, and Web platforms."
39
+ "PermissionHandler is currently only supported on Android, iOS, "
40
+ "Windows, and Web platforms."
38
41
  )
39
42
 
40
43
  async def get_status_async(
@@ -46,13 +49,17 @@ class PermissionHandler(ft.Service):
46
49
  Args:
47
50
  permission: The `Permission` to check the status for.
48
51
  timeout: The maximum amount of time (in seconds) to wait for a response.
52
+
49
53
  Returns:
50
54
  A `PermissionStatus` if the status is known, otherwise `None`.
55
+
51
56
  Raises:
52
57
  TimeoutError: If the request times out.
53
58
  """
54
59
  status = await self._invoke_method_async(
55
- "get_status", {"permission": permission}, timeout=timeout
60
+ method_name="get_status",
61
+ arguments={"permission": permission},
62
+ timeout=timeout,
56
63
  )
57
64
  return PermissionStatus(status) if status is not None else None
58
65
 
@@ -60,18 +67,24 @@ class PermissionHandler(ft.Service):
60
67
  self, permission: Permission, timeout: int = 60
61
68
  ) -> Optional[PermissionStatus]:
62
69
  """
63
- Request the user for access to the `permission` if access hasn't already been granted access before.
70
+ Request the user for access to the `permission` if access hasn't already been
71
+ granted access before.
64
72
 
65
73
  Args:
66
74
  permission: The `Permission` to request.
67
75
  timeout: The maximum amount of time (in seconds) to wait for a response.
76
+
68
77
  Returns:
69
- The new `PermissionStatus` after the request, or `None` if the request was not successful.
78
+ The new `PermissionStatus` after the request, or `None` if the request
79
+ was not successful.
80
+
70
81
  Raises:
71
82
  TimeoutError: If the request times out.
72
83
  """
73
84
  r = await self._invoke_method_async(
74
- "request", {"permission": permission}, timeout=timeout
85
+ method_name="request",
86
+ arguments={"permission": permission},
87
+ timeout=timeout,
75
88
  )
76
89
  return PermissionStatus(r) if r is not None else None
77
90
 
@@ -81,9 +94,14 @@ class PermissionHandler(ft.Service):
81
94
 
82
95
  Args:
83
96
  timeout: The maximum amount of time (in seconds) to wait for a response.
97
+
84
98
  Returns:
85
99
  `True` if the app settings page could be opened, otherwise `False`.
100
+
86
101
  Raises:
87
102
  TimeoutError: If the request times out.
88
103
  """
89
- return await self._invoke_method_async("open_app_settings", timeout=timeout)
104
+ return await self._invoke_method_async(
105
+ method_name="open_app_settings",
106
+ timeout=timeout,
107
+ )
@@ -1,8 +1,8 @@
1
1
  from enum import Enum
2
2
 
3
3
  __all__ = [
4
- "PermissionStatus",
5
4
  "Permission",
5
+ "PermissionStatus",
6
6
  ]
7
7
 
8
8
 
@@ -21,22 +21,23 @@ class PermissionStatus(Enum):
21
21
 
22
22
  PERMANENTLY_DENIED = "permanentlyDenied"
23
23
  """
24
- Permission to the requested feature is permanently denied,
25
- the permission dialog will not be shown when requesting this permission.
24
+ Permission to the requested feature is permanently denied,
25
+ the permission dialog will not be shown when requesting this permission.
26
26
  The user may still change the permission status in the settings.
27
27
 
28
28
  Note:
29
- - On Android:
30
- - Android 11+ (API 30+): whether the user denied the permission for a second time.
31
-
32
- - Below Android 11 (API 30): whether the user denied access
29
+ - On Android:
30
+ - Android 11+ (API 30+): whether the user denied the permission
31
+ for a second time.
32
+ - Below Android 11 (API 30): whether the user denied access
33
33
  to the requested feature and selected to never again show a request.
34
34
  - On iOS: If the user has denied access to the requested feature.
35
35
  """
36
36
 
37
37
  LIMITED = "limited"
38
38
  """
39
- The user has authorized this application for limited access. So far this is only relevant for the Photo Library picker.
39
+ The user has authorized this application for limited access.
40
+ So far this is only relevant for the Photo Library picker.
40
41
 
41
42
  Note:
42
43
  Only supported on iOS (iOS14+) and Android (Android 14+).
@@ -44,7 +45,8 @@ class PermissionStatus(Enum):
44
45
 
45
46
  PROVISIONAL = "provisional"
46
47
  """
47
- The application is provisionally authorized to post non-interruptive user notifications.
48
+ The application is provisionally authorized to post non-interruptive
49
+ user notifications.
48
50
 
49
51
  Note:
50
52
  Only supported on iOS (iOS 12+).
@@ -52,14 +54,17 @@ class PermissionStatus(Enum):
52
54
 
53
55
  RESTRICTED = "restricted"
54
56
  """
55
- The OS denied access to the requested feature. The user cannot change this app's status, possibly due to active restrictions such as parental controls being in place.
57
+ The OS denied access to the requested feature. The user cannot change
58
+ this app's status, possibly due to active restrictions such as parental
59
+ controls being in place.
56
60
 
57
61
  Note:
58
62
  Only supported on iOS.
59
63
  """
60
64
 
61
65
 
62
- # todo: show how pyproject config for each could look like for each permission (what exactly is needed in manifest, plist, etc.)
66
+ # todo: show how pyproject config for each could look like for each permission
67
+ # (what exactly is needed in manifest, plist, etc.)
63
68
 
64
69
 
65
70
  class Permission(Enum):
@@ -68,7 +73,7 @@ class Permission(Enum):
68
73
  ACCESS_MEDIA_LOCATION = "accessMediaLocation"
69
74
  """
70
75
  Permission for accessing the device's media library.
71
-
76
+
72
77
  Allows an application to access any geographic locations persisted in the
73
78
  user's shared collection.
74
79
 
@@ -79,10 +84,10 @@ class Permission(Enum):
79
84
  ACCESS_NOTIFICATION_POLICY = "accessNotificationPolicy"
80
85
  """
81
86
  Permission for accessing the device's notification policy.
82
-
87
+
83
88
  Allows the user to access the notification policy of the phone.
84
89
  Example: Allows app to turn on and off do-not-disturb.
85
-
90
+
86
91
  Note:
87
92
  Only supported on Android Marshmallow+ (API 23+) only.
88
93
  """
@@ -101,7 +106,7 @@ class Permission(Enum):
101
106
  Allows user to accept that your app collects data about end users and
102
107
  shares it with other companies for purposes of tracking across apps and
103
108
  websites.
104
-
109
+
105
110
  Note:
106
111
  Only supported on iOS only.
107
112
  """
@@ -116,7 +121,7 @@ class Permission(Enum):
116
121
  AUDIO = "audio"
117
122
  """
118
123
  Permission for accessing the device's audio files from external storage.
119
-
124
+
120
125
  Note:
121
126
  Only supported on Android 13+ (API 33+) only.
122
127
  """
@@ -124,7 +129,7 @@ class Permission(Enum):
124
129
  BACKGROUND_REFRESH = "backgroundRefresh"
125
130
  """
126
131
  Permission for reading the current background refresh status.
127
-
132
+
128
133
  Note:
129
134
  Only supported on iOS only.
130
135
  """
@@ -134,7 +139,7 @@ class Permission(Enum):
134
139
  Permission for accessing the device's bluetooth adapter state.
135
140
 
136
141
  Depending on the platform and version, the requirements are slightly different:
137
-
142
+
138
143
  Info:
139
144
  - Android: always allowed.
140
145
  - iOS:
@@ -155,7 +160,7 @@ class Permission(Enum):
155
160
  """
156
161
  Permission for connecting to Bluetooth devices.
157
162
  Allows the user to connect with already paired Bluetooth devices.
158
-
163
+
159
164
  Note:
160
165
  Only supported on Android 12+ (API 31+) only.
161
166
  """
@@ -177,7 +182,8 @@ class Permission(Enum):
177
182
  """
178
183
  Permission for writing to the device's calendar.
179
184
 
180
- On iOS 16 and lower, this permission is identical to `Permission.CALENDAR_FULL_ACCESS`.
185
+ On iOS 16 and lower, this permission is identical to
186
+ [`CALENDAR_FULL_ACCESS`][..].
181
187
  """
182
188
 
183
189
  CAMERA = "camera"
@@ -202,7 +208,7 @@ class Permission(Enum):
202
208
  """
203
209
  Permission for sending critical alerts.
204
210
  Allow for sending notifications that override the ringer.
205
-
211
+
206
212
  Note:
207
213
  Only supported on iOS only.
208
214
  """
@@ -210,7 +216,7 @@ class Permission(Enum):
210
216
  IGNORE_BATTERY_OPTIMIZATIONS = "ignoreBatteryOptimizations"
211
217
  """
212
218
  Permission for accessing ignore battery optimizations.
213
-
219
+
214
220
  Note:
215
221
  Only supported on Android only.
216
222
  """
@@ -232,8 +238,9 @@ class Permission(Enum):
232
238
 
233
239
  LOCATION_WHEN_IN_USE = "locationWhenInUse"
234
240
  """
235
- Permission for accessing the device's location when the app is running in the foreground.
236
-
241
+ Permission for accessing the device's location when the app is
242
+ running in the foreground.
243
+
237
244
  Info:
238
245
  - Android: Fine and Coarse Location
239
246
  - iOS: CoreLocation - WhenInUse
@@ -243,21 +250,24 @@ class Permission(Enum):
243
250
  """
244
251
  Permission for accessing the device's external storage.
245
252
  Allows an application a broad access to external storage in scoped storage.
246
-
247
- You should request this permission only when your app cannot
253
+
254
+ You should request this permission only when your app cannot
248
255
  effectively make use of the more privacy-friendly APIs.
249
- For more information: https://developer.android.com/training/data-storage/manage-all-files
250
-
256
+ For more information:
257
+ https://developer.android.com/training/data-storage/manage-all-files
258
+
251
259
  Info:
252
260
  When the privacy-friendly APIs (i.e. [Storage Access Framework](https://developer.android.com/guide/topics/providers/document-provider)
253
261
  or the [MediaStore](https://developer.android.com/training/data-storage/shared/media) APIs)
254
262
  is all your app needs, the [PermissionGroup.storage] are the only
255
263
  permissions you need to request.
256
-
257
- If the usage of this permission is needed, you have to fill out
258
- the Permission Declaration Form upon submitting your app to the Google Play Store.
259
- More details: https://support.google.com/googleplay/android-developer/answer/9214102#zippy=
260
-
264
+
265
+ If the usage of this permission is needed, you have to fill out
266
+ the Permission Declaration Form upon submitting your app to the
267
+ Google Play Store.
268
+ More details:
269
+ https://support.google.com/googleplay/android-developer/answer/9214102#zippy=
270
+
261
271
  Note:
262
272
  Only supported on Android 11+ (API 30+) only.
263
273
  """
@@ -265,7 +275,7 @@ class Permission(Enum):
265
275
  MEDIA_LIBRARY = "mediaLibrary"
266
276
  """
267
277
  Permission for accessing the device's media library.
268
-
278
+
269
279
  Note:
270
280
  Only supported on iOS 9.3+ only
271
281
  """
@@ -291,7 +301,7 @@ class Permission(Enum):
291
301
  PHONE = "phone"
292
302
  """
293
303
  Permission for accessing the device's phone state.
294
-
304
+
295
305
  Note:
296
306
  Only supported on Android only.
297
307
  """
@@ -300,7 +310,7 @@ class Permission(Enum):
300
310
  """
301
311
  Permission for accessing (read & write) the device's photos.
302
312
 
303
- If you only want to add photos, you can use
313
+ If you only want to add photos, you can use
304
314
  the `PHOTOS_ADD_ONLY` permission instead (iOS only).
305
315
  """
306
316
 
@@ -309,7 +319,7 @@ class Permission(Enum):
309
319
  Permission for adding photos to the device's photo library (iOS only).
310
320
 
311
321
  If you want to read them as well, use the `Permission.PHOTOS` permission instead.
312
-
322
+
313
323
  Info:
314
324
  iOS: Photos (14+ read & write access level)
315
325
  """
@@ -317,7 +327,7 @@ class Permission(Enum):
317
327
  REMINDERS = "reminders"
318
328
  """
319
329
  Permission for accessing the device's reminders.
320
-
330
+
321
331
  Note:
322
332
  Only supported on iOS only.
323
333
  """
@@ -325,7 +335,7 @@ class Permission(Enum):
325
335
  REQUEST_INSTALL_PACKAGES = "requestInstallPackages"
326
336
  """
327
337
  Permission for requesting installing packages.
328
-
338
+
329
339
  Note:
330
340
  Only supported on Android Marshmallow+ (API 23+) only.
331
341
  """
@@ -341,7 +351,7 @@ class Permission(Enum):
341
351
  SENSORS = "sensors"
342
352
  """
343
353
  Permission for accessing the device's sensors.
344
-
354
+
345
355
  Info:
346
356
  - Android: Body Sensors
347
357
  - iOS: CoreMotion
@@ -365,8 +375,10 @@ class Permission(Enum):
365
375
  Permission for accessing speech recognition.
366
376
 
367
377
  Info:
368
- - Android: Requests access to microphone (identical to requesting `Permission.MICROPHONE`).
369
- - iOS: Requests speech access (different from requesting `Permission.MICROPHONE`).
378
+ - Android: Requests access to microphone
379
+ (identical to requesting [`MICROPHONE`][..]).
380
+ - iOS: Requests speech access (different from requesting
381
+ [`MICROPHONE`][..]).
370
382
  """
371
383
 
372
384
  STORAGE = "storage"
@@ -374,14 +386,16 @@ class Permission(Enum):
374
386
  Permission for accessing external storage.
375
387
 
376
388
  Depending on the platform and version, the requirements are slightly different:
377
-
389
+
378
390
  Info:
379
391
  - Android:
380
392
  - On Android 13 (API 33) and above, this permission is deprecated and
381
393
  always returns `PermissionStatus.denied`. Instead use `Permission.PHOTOS`,
382
- `Permission.VIDEO`, `Permission.AUDIO` or `Permission.MANAGE_EXTERNAL_STORAGE`.
383
- For more information see [this](https://pub.dev/packages/permission_handler#faq).
384
-
394
+ `Permission.VIDEO`, `Permission.AUDIO` or
395
+ `Permission.MANAGE_EXTERNAL_STORAGE`.
396
+ For more information see
397
+ [this](https://pub.dev/packages/permission_handler#faq).
398
+
385
399
  - Below Android 13 (API 33), the `READ_EXTERNAL_STORAGE` and
386
400
  `WRITE_EXTERNAL_STORAGE` permissions are requested (depending on the
387
401
  definitions in the AndroidManifest.xml) file.
@@ -392,7 +406,7 @@ class Permission(Enum):
392
406
  """
393
407
  Permission for creating system alert window.
394
408
  Allows an app to create windows shown on top of all other apps.
395
-
409
+
396
410
  Note:
397
411
  Only supported on Android only.
398
412
  """
@@ -405,7 +419,7 @@ class Permission(Enum):
405
419
  VIDEOS = "videos"
406
420
  """
407
421
  Permission for accessing the device's video files from external storage.
408
-
422
+
409
423
  Note:
410
424
  Only supported on Android 13+ (API 33+) only.
411
425
  """
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet-permission-handler
3
- Version: 0.2.0.dev34
4
- Summary: PermissionHandler control for Flet
3
+ Version: 0.2.0.dev55
4
+ Summary: A Flet extension that simplifies working with permissions in your app.
5
5
  Author-email: Flet contributors <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
7
7
  Project-URL: Homepage, https://flet.dev
@@ -11,7 +11,7 @@ Project-URL: Issues, https://github.com/flet-dev/flet-permission-handler/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-permission-handler
@@ -1,18 +1,18 @@
1
- flet_permission_handler/__init__.py,sha256=2D7A5avrZ15ZR3BSq7nuhMKNUcwV8Om4DNpCXrKjrnw,98
2
- flet_permission_handler/permission_handler.py,sha256=kR6n42ieY3imRUVaNL9oLw9v5A-3yj07x38Bn92CqZI,3025
3
- flet_permission_handler/types.py,sha256=WZppWUIYGuEjdEn5XQIjQDmFm34FophsNWMJbiSfNZk,11315
4
- flet_permission_handler-0.2.0.dev34.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1
+ flet_permission_handler/__init__.py,sha256=_c3viU9FrR8PIkgJVWZwf1DTdTPVqST_Snc_1-vxVgo,180
2
+ flet_permission_handler/permission_handler.py,sha256=EwYkhl5dtK1iacJXtMott93LtfmavLEbfj5fMzUA7So,3261
3
+ flet_permission_handler/types.py,sha256=V_6b7fm9pfL2zd43upiPPpw2fJaIkhoA_9YnNImU3oU,11273
4
+ flet_permission_handler-0.2.0.dev55.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
5
5
  flutter/flet_permission_handler/CHANGELOG.md,sha256=66sWepPaeTc9_lzcYIGU55AlxSU5Z1XVtknXpzd_-p8,40
6
6
  flutter/flet_permission_handler/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
7
7
  flutter/flet_permission_handler/README.md,sha256=CuYLIxfY73NeTbx8z1GgHMz-wTYmTKopoVNCAWiDj7w,84
8
8
  flutter/flet_permission_handler/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
9
- flutter/flet_permission_handler/pubspec.lock,sha256=WaCrkDbfzH5Mu_q25a7Nw_RE5Z56Y8VCS03QKB5GSjo,24402
10
- flutter/flet_permission_handler/pubspec.yaml,sha256=sGtyAmvIMD_K4bwIN9IGO1sO52VBtUFtXah5PijhZx8,566
9
+ flutter/flet_permission_handler/pubspec.lock,sha256=hoBzRl72kk5b_IZpeWKIY3ueRxczsHi_G7R9FVgU0dI,24400
10
+ flutter/flet_permission_handler/pubspec.yaml,sha256=P9-bE0zzMPEj9cusSi1D2MpnlTL_u_5XysCaQ9MjR8w,568
11
11
  flutter/flet_permission_handler/lib/flet_permission_handler.dart,sha256=rrlbNta1UlnSvzwOJsAUmOHvEBjfUDvMo6jnZQIO67s,78
12
12
  flutter/flet_permission_handler/lib/src/extension.dart,sha256=FYygqTMesWQOUIIf6dLmZS98gCVE_3KmccdR2_LTDg0,336
13
13
  flutter/flet_permission_handler/lib/src/permission_handler.dart,sha256=5aBWHNUIczDmmbsbXzzzB79vIbpDVpBAxo281_ghkss,1395
14
14
  flutter/flet_permission_handler/lib/src/utils/permission_handler.dart,sha256=Krtg-LPeyK9clYqDXfynSytGsiGTFX8HEe9NmNSR0Gk,453
15
- flet_permission_handler-0.2.0.dev34.dist-info/METADATA,sha256=wDzX20ii7Oemvicnnhn-nkcX0d08IPrOO6FOHwe9OwM,2365
16
- flet_permission_handler-0.2.0.dev34.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- flet_permission_handler-0.2.0.dev34.dist-info/top_level.txt,sha256=GMsa0IlcchYQqCgGn8WkekKbU0cb5k8lCazopnbWU_s,32
18
- flet_permission_handler-0.2.0.dev34.dist-info/RECORD,,
15
+ flet_permission_handler-0.2.0.dev55.dist-info/METADATA,sha256=1iQsnwG6OzMhfXlpTjny9jNysyRPCUYp7HPFg5xd7EU,2406
16
+ flet_permission_handler-0.2.0.dev55.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ flet_permission_handler-0.2.0.dev55.dist-info/top_level.txt,sha256=GMsa0IlcchYQqCgGn8WkekKbU0cb5k8lCazopnbWU_s,32
18
+ flet_permission_handler-0.2.0.dev55.dist-info/RECORD,,
@@ -125,8 +125,8 @@ packages:
125
125
  dependency: "direct main"
126
126
  description:
127
127
  path: "packages/flet"
128
- ref: v1
129
- resolved-ref: f76d1c5dd805ec81a5a5d63300d61413a5bf27ae
128
+ ref: main
129
+ resolved-ref: cf8823c5d766ea7866480986aa3ee871f4091e78
130
130
  url: "https://github.com/flet-dev/flet.git"
131
131
  source: git
132
132
  version: "0.70.0"
@@ -147,10 +147,10 @@ packages:
147
147
  dependency: "direct dev"
148
148
  description:
149
149
  name: flutter_lints
150
- sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04
150
+ sha256: "9e8c3858111da373efc5aa341de011d9bd23e2c5c5e0c62bccf32438e192d7b1"
151
151
  url: "https://pub.dev"
152
152
  source: hosted
153
- version: "2.0.3"
153
+ version: "3.0.2"
154
154
  flutter_localizations:
155
155
  dependency: transitive
156
156
  description: flutter
@@ -258,10 +258,10 @@ packages:
258
258
  dependency: transitive
259
259
  description:
260
260
  name: lints
261
- sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
261
+ sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
262
262
  url: "https://pub.dev"
263
263
  source: hosted
264
- version: "2.1.1"
264
+ version: "3.0.0"
265
265
  logging:
266
266
  dependency: transitive
267
267
  description:
@@ -386,10 +386,10 @@ packages:
386
386
  dependency: "direct main"
387
387
  description:
388
388
  name: permission_handler
389
- sha256: "2d070d8684b68efb580a5997eb62f675e8a885ef0be6e754fb9ef489c177470f"
389
+ sha256: bc917da36261b00137bbc8896bf1482169cd76f866282368948f032c8c1caae1
390
390
  url: "https://pub.dev"
391
391
  source: hosted
392
- version: "12.0.0+1"
392
+ version: "12.0.1"
393
393
  permission_handler_android:
394
394
  dependency: transitive
395
395
  description:
@@ -783,10 +783,10 @@ packages:
783
783
  dependency: transitive
784
784
  description:
785
785
  name: window_manager
786
- sha256: "51d50168ab267d344b975b15390426b1243600d436770d3f13de67e55b05ec16"
786
+ sha256: "7eb6d6c4164ec08e1bf978d6e733f3cebe792e2a23fb07cbca25c2872bfdbdcd"
787
787
  url: "https://pub.dev"
788
788
  source: hosted
789
- version: "0.5.0"
789
+ version: "0.5.1"
790
790
  window_to_front:
791
791
  dependency: transitive
792
792
  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