flet 0.70.0.dev6491__py3-none-any.whl → 0.70.0.dev6516__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 might be problematic. Click here for more details.

flet/__init__.py CHANGED
@@ -311,7 +311,6 @@ from flet.controls.material.navigation_bar import (
311
311
  from flet.controls.material.navigation_drawer import (
312
312
  NavigationDrawer,
313
313
  NavigationDrawerDestination,
314
- NavigationDrawerPosition,
315
314
  )
316
315
  from flet.controls.material.navigation_rail import (
317
316
  NavigationRail,
@@ -778,7 +777,6 @@ __all__ = [
778
777
  "NavigationBarTheme",
779
778
  "NavigationDrawer",
780
779
  "NavigationDrawerDestination",
781
- "NavigationDrawerPosition",
782
780
  "NavigationDrawerTheme",
783
781
  "NavigationRail",
784
782
  "NavigationRailDestination",
@@ -372,6 +372,36 @@ class BasePage(AdaptiveControl):
372
372
  dialog.update()
373
373
  return dialog
374
374
 
375
+ async def show_drawer(self):
376
+ """
377
+ Show the drawer.
378
+
379
+ Raises:
380
+ ValueError: If no [`drawer`][(c).] is defined.
381
+ """
382
+ await self.__default_view().show_drawer()
383
+
384
+ async def close_drawer(self):
385
+ """
386
+ Close the drawer.
387
+ """
388
+ await self.__default_view().close_drawer()
389
+
390
+ async def show_end_drawer(self):
391
+ """
392
+ Show the end drawer.
393
+
394
+ Raises:
395
+ ValueError: If no [`end_drawer`][(c).] is defined.
396
+ """
397
+ await self.__default_view().show_end_drawer()
398
+
399
+ async def close_end_drawer(self):
400
+ """
401
+ Close the end drawer.
402
+ """
403
+ await self.__default_view().close_end_drawer()
404
+
375
405
  async def take_screenshot(
376
406
  self,
377
407
  pixel_ratio: Optional[Number] = None,
@@ -107,27 +107,36 @@ class Pagelet(LayoutControl, AdaptiveControl):
107
107
  if not self.content.visible:
108
108
  raise ValueError("content must be visible")
109
109
 
110
- # todo: deprecate show_* in favor of a open/close methods, or page.open/close
111
- # Drawer
112
- #
113
- def show_drawer(self, drawer: NavigationDrawer):
114
- self.drawer = drawer
115
- self.drawer.open = True
116
- self.update()
117
-
118
- def close_drawer(self):
119
- if self.drawer is not None:
120
- self.drawer.open = False
121
- self.update()
122
-
123
- # End_drawer
124
- #
125
- def show_end_drawer(self, end_drawer: NavigationDrawer):
126
- self.end_drawer = end_drawer
127
- self.end_drawer.open = True
128
- self.update()
129
-
130
- def close_end_drawer(self):
131
- if self.end_drawer is not None:
132
- self.end_drawer.open = False
133
- self.update()
110
+ async def show_drawer(self):
111
+ """
112
+ Show the drawer.
113
+
114
+ Raises:
115
+ ValueError: If no [`drawer`][(c).] is defined.
116
+ """
117
+ if self.drawer is None:
118
+ raise ValueError("No drawer defined")
119
+ await self._invoke_method("show_drawer")
120
+
121
+ async def close_drawer(self):
122
+ """
123
+ Close the drawer.
124
+ """
125
+ await self._invoke_method("close_drawer")
126
+
127
+ async def show_end_drawer(self):
128
+ """
129
+ Show the end drawer.
130
+
131
+ Raises:
132
+ ValueError: If no [`end_drawer`][(c).] is defined.
133
+ """
134
+ if self.end_drawer is None:
135
+ raise ValueError("No end_drawer defined")
136
+ await self._invoke_method("show_end_drawer")
137
+
138
+ async def close_end_drawer(self):
139
+ """
140
+ Close the end drawer.
141
+ """
142
+ await self._invoke_method("close_end_drawer")
@@ -17,6 +17,22 @@ class ShaderMask(LayoutControl):
17
17
 
18
18
  For example, it can be used to gradually fade out the edge of a control by
19
19
  using a [`LinearGradient`][flet.] mask.
20
+
21
+ ```python
22
+ ft.ShaderMask(
23
+ blend_mode=ft.BlendMode.MULTIPLY,
24
+ shader=ft.LinearGradient(
25
+ begin=ft.Alignment.CENTER_LEFT,
26
+ end=ft.Alignment.CENTER_RIGHT,
27
+ colors=[ft.Colors.WHITE, ft.Colors.BLACK],
28
+ tile_mode=ft.GradientTileMode.CLAMP,
29
+ ),
30
+ content=ft.Image(
31
+ src="https://picsum.photos/id/288/300/300",
32
+ height=300,
33
+ fit=ft.BoxFit.FILL,
34
+ )
35
+ ```
20
36
  """
21
37
 
22
38
  shader: Gradient
@@ -158,9 +158,6 @@ class View(ScrollableControl, LayoutControl):
158
158
  can_pop: bool = True
159
159
  on_confirm_pop: Optional[ControlEventHandler["View"]] = None
160
160
 
161
- async def confirm_pop(self, should_pop: bool) -> None:
162
- await self._invoke_method("confirm_pop", {"should_pop": should_pop})
163
-
164
161
  def init(self):
165
162
  super().init()
166
163
  self._internals["host_expanded"] = True
@@ -168,3 +165,40 @@ class View(ScrollableControl, LayoutControl):
168
165
  # Magic methods
169
166
  def __contains__(self, item: Control) -> bool:
170
167
  return item in self.controls
168
+
169
+ async def confirm_pop(self, should_pop: bool) -> None:
170
+ await self._invoke_method("confirm_pop", {"should_pop": should_pop})
171
+
172
+ async def show_drawer(self):
173
+ """
174
+ Show the drawer.
175
+
176
+ Raises:
177
+ ValueError: If no [`drawer`][(c).] is defined.
178
+ """
179
+ if self.drawer is None:
180
+ raise ValueError("No drawer defined")
181
+ await self._invoke_method("show_drawer")
182
+
183
+ async def close_drawer(self):
184
+ """
185
+ Close the drawer.
186
+ """
187
+ await self._invoke_method("close_drawer")
188
+
189
+ async def show_end_drawer(self):
190
+ """
191
+ Show the end drawer.
192
+
193
+ Raises:
194
+ ValueError: If no [`end_drawer`][(c).] is defined.
195
+ """
196
+ if self.end_drawer is None:
197
+ raise ValueError("No end_drawer defined")
198
+ await self._invoke_method("show_end_drawer")
199
+
200
+ async def close_end_drawer(self):
201
+ """
202
+ Close the end drawer.
203
+ """
204
+ await self._invoke_method("close_end_drawer")
@@ -220,7 +220,7 @@ class Dropdown(LayoutControl):
220
220
  Called when the selected item of this dropdown has changed.
221
221
  """
222
222
 
223
- on_change: Optional[ControlEventHandler["Dropdown"]] = None
223
+ on_text_change: Optional[ControlEventHandler["Dropdown"]] = None
224
224
  """
225
225
  Called when the text input of this dropdown has changed.
226
226
  """
@@ -1,12 +1,11 @@
1
1
  from dataclasses import field
2
- from enum import Enum
3
2
  from typing import Optional
4
3
 
4
+ from flet.controls.adaptive_control import AdaptiveControl
5
5
  from flet.controls.base_control import control
6
6
  from flet.controls.buttons import OutlinedBorder
7
7
  from flet.controls.control import Control
8
8
  from flet.controls.control_event import ControlEventHandler
9
- from flet.controls.dialog_control import DialogControl
10
9
  from flet.controls.padding import PaddingValue
11
10
  from flet.controls.types import (
12
11
  ColorValue,
@@ -17,7 +16,6 @@ from flet.controls.types import (
17
16
  __all__ = [
18
17
  "NavigationDrawer",
19
18
  "NavigationDrawerDestination",
20
- "NavigationDrawerPosition",
21
19
  ]
22
20
 
23
21
 
@@ -74,13 +72,8 @@ class NavigationDrawerDestination(Control):
74
72
  """
75
73
 
76
74
 
77
- class NavigationDrawerPosition(Enum):
78
- START = "start"
79
- END = "end"
80
-
81
-
82
75
  @control("NavigationDrawer")
83
- class NavigationDrawer(DialogControl):
76
+ class NavigationDrawer(AdaptiveControl):
84
77
  """
85
78
  Material Design Navigation Drawer component.
86
79
 
@@ -138,12 +131,12 @@ class NavigationDrawer(DialogControl):
138
131
  Defines the padding for `destination` controls.
139
132
  """
140
133
 
141
- position: NavigationDrawerPosition = NavigationDrawerPosition.START
134
+ on_change: Optional[ControlEventHandler["NavigationDrawer"]] = None
142
135
  """
143
- The position of this drawer.
136
+ Called when selected destination changed.
144
137
  """
145
138
 
146
- on_change: Optional[ControlEventHandler["NavigationDrawer"]] = None
139
+ on_dismiss: Optional[ControlEventHandler["NavigationDrawer"]] = None
147
140
  """
148
- Called when selected destination changed.
141
+ Called when the drawer is dismissed.
149
142
  """
@@ -32,6 +32,11 @@ class Slider(LayoutControl, AdaptiveControl):
32
32
  Use a slider when you want people to set defined values (such as volume or
33
33
  brightness), or when people would benefit from instant feedback on the effect
34
34
  of setting changes.
35
+
36
+ ```python
37
+ ft.Slider(label="Slider", value=0.3)
38
+ ```
39
+
35
40
  """
36
41
 
37
42
  value: Optional[Number] = None
@@ -47,6 +47,8 @@ class SnackBarAction(Control):
47
47
  action, avoid including it in the snack bar in the first place.
48
48
  - Snack bar actions can will only respond to first click.
49
49
  Subsequent clicks/presses are ignored.
50
+
51
+
50
52
  """
51
53
 
52
54
  label: str
@@ -93,6 +95,11 @@ class SnackBar(DialogControl):
93
95
  """
94
96
  A lightweight message with an optional action which briefly displays at the
95
97
  bottom of the screen.
98
+
99
+ ```python
100
+ page.show_dialog(ft.SnackBar(ft.Text("Opened snack bar")))
101
+ ```
102
+
96
103
  """
97
104
 
98
105
  content: StrOrControl
@@ -14,6 +14,29 @@ class VerticalDivider(Control):
14
14
  A thin vertical line, with padding on either side.
15
15
 
16
16
  In the material design language, this represents a divider.
17
+
18
+ ```python
19
+ ft.Row(
20
+ width=120,
21
+ height=60,
22
+ expand=True,
23
+ spacing=0,
24
+ controls=[
25
+ ft.Container(
26
+ bgcolor=ft.Colors.BLUE_GREY_200,
27
+ alignment=ft.Alignment.CENTER,
28
+ expand=True,
29
+ ),
30
+ ft.VerticalDivider(),
31
+ ft.Container(
32
+ bgcolor=ft.Colors.GREY_500,
33
+ alignment=ft.Alignment.CENTER,
34
+ expand=True,
35
+ ),
36
+ ],
37
+ )
38
+ ```
39
+
17
40
  """
18
41
 
19
42
  width: Optional[Number] = None
@@ -261,7 +261,24 @@ class FletTestApp:
261
261
  print("Force killing Flutter test process...")
262
262
  self.__flutter_process.kill()
263
263
 
264
- async def wrap_page_controls_in_screenshot(self, margin=10):
264
+ async def resize_page(self, width: int, height: int):
265
+ """
266
+ Resizes the page window to the specified width and height.
267
+ """
268
+ if self.page.window.width is None or self.page.window.height is None:
269
+ return
270
+
271
+ chrome_width = self.page.window.width - self.page.width
272
+ chrome_height = self.page.window.height - self.page.height
273
+ self.page.window.width = width + chrome_width
274
+ self.page.window.height = height + chrome_height
275
+
276
+ async def wrap_page_controls_in_screenshot(
277
+ self,
278
+ margin=10,
279
+ pump_times: int = 0,
280
+ pump_duration: Optional[ft.DurationValue] = None,
281
+ ) -> ft.Screenshot:
265
282
  """
266
283
  Wraps provided controls in a Screenshot control.
267
284
  """
@@ -273,16 +290,22 @@ class FletTestApp:
273
290
  ] # type: ignore
274
291
  self.page.update()
275
292
  await self.tester.pump_and_settle()
293
+ for _ in range(0, pump_times):
294
+ await self.tester.pump(duration=pump_duration)
276
295
  return scr
277
296
 
278
297
  async def take_page_controls_screenshot(
279
298
  self,
280
299
  pixel_ratio: Optional[float] = None,
281
- ):
300
+ pump_times: int = 0,
301
+ pump_duration: Optional[ft.DurationValue] = None,
302
+ ) -> bytes:
282
303
  """
283
304
  Takes a screenshot of all controls on the current page.
284
305
  """
285
- scr = await self.wrap_page_controls_in_screenshot()
306
+ scr = await self.wrap_page_controls_in_screenshot(
307
+ pump_times=pump_times, pump_duration=pump_duration
308
+ )
286
309
  return await scr.capture(
287
310
  pixel_ratio=pixel_ratio or self.screenshots_pixel_ratio
288
311
  )
@@ -371,7 +394,8 @@ class FletTestApp:
371
394
  with open(actual_image_path, "bw") as f:
372
395
  f.write(screenshot)
373
396
  assert similarity > similarity_threshold, (
374
- f"{name} screenshots are not identical"
397
+ f"{name} screenshots are not identical "
398
+ f"(similarity: {similarity}% <= {similarity_threshold}%)"
375
399
  )
376
400
 
377
401
  def _load_image_from_file(self, file_name):
flet/version.py CHANGED
@@ -10,7 +10,7 @@ from flet.utils import is_mobile, is_windows, which
10
10
  DEFAULT_VERSION = "0.1.0"
11
11
 
12
12
  # will be replaced by CI
13
- version = "0.70.0.dev6491"
13
+ version = "0.70.0.dev6516"
14
14
 
15
15
 
16
16
  def update_version():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flet
3
- Version: 0.70.0.dev6491
3
+ Version: 0.70.0.dev6516
4
4
  Summary: Flet for Python - easily build interactive multi-platform apps in Python
5
5
  Author-email: "Appveyor Systems Inc." <hello@flet.dev>
6
6
  License-Expression: Apache-2.0
@@ -1,7 +1,7 @@
1
- flet/__init__.py,sha256=39Ci10DOyWcl-9adUYDbIX7eR0PHsRELpESPQZnCw9M,26200
1
+ flet/__init__.py,sha256=jw8lM_mMrtwx6FarCTrg8DWT6-fTCmHVPB7ofMEAAKw,26138
2
2
  flet/app.py,sha256=HSws0Zm4ZO0-Hp2P9h7xirCVnRkKCVXhuekyAXT_9Fo,11883
3
3
  flet/cli.py,sha256=IUM25fY_sqMtl0hlQGhlMQaBb1oNyO0VZeeBgRodhuA,204
4
- flet/version.py,sha256=GHguBQr_1qx1lt7ITEMc87SWSemt1-Zofpza7JyiMqE,2512
4
+ flet/version.py,sha256=elgXldNH_A68UZjUUzVs5ACUN78qyH2Ahc0cblTDqOc,2512
5
5
  flet/auth/__init__.py,sha256=eDqmi0Ki8Resd198S7XxgYa2R14wnNqIXnYhBLPl8fQ,289
6
6
  flet/auth/authorization.py,sha256=hP_36RiRPtSwmK_Yp6MMzAjQdDxbBiEcZ2yFNqyNiRs,357
7
7
  flet/auth/authorization_service.py,sha256=6N2LvisSt7KI_VgfyCH0OaJ6jTcmXCkAldN1yYlakzQ,6410
@@ -35,7 +35,7 @@ flet/controls/adaptive_control.py,sha256=Pw0E7z0IlNSe05cQTi5BLElLF3OnlVLzwfvtOQp
35
35
  flet/controls/alignment.py,sha256=re4jnpuqNPPWs55bf8RB_c9llqcuGhZcCjdNutx2N5M,3257
36
36
  flet/controls/animation.py,sha256=C3Sxqte4S225m3UvlQOm-DGxd1WJaqfdLpA6e10B_BM,3763
37
37
  flet/controls/base_control.py,sha256=MtePz5xzgVpAQQxb-wNr-roAs3Oud3G8DY__zmf1Gzg,10667
38
- flet/controls/base_page.py,sha256=JhkaB0Fm5S4nAKLuNRpZQFbVnJcFUPmNh9fjcVulOZs,18106
38
+ flet/controls/base_page.py,sha256=KFTGaG1b-wiTm3-dTn__DDrw7GBvQIe8s9LD5X2SqBA,18824
39
39
  flet/controls/blur.py,sha256=taMH4qtILyAFn1qNsgBGRV3z0GSH6V7VKPV3ZSBhOL4,602
40
40
  flet/controls/border.py,sha256=aBxj8OzEoufGPZb5yibsg2SO2OHeBAFmti63-y_oQtY,8808
41
41
  flet/controls/border_radius.py,sha256=ePfpA_uNhR6bfBSmYxy2cO0mZ3FU1r63qX_5RuHWwDM,6605
@@ -89,7 +89,7 @@ flet/controls/core/keyboard_listener.py,sha256=Rml7c7pHNzTyBiSbW15cUXwhr5YddTrSo
89
89
  flet/controls/core/list_view.py,sha256=hlQNqVRd4_BzZpRxlOK00Gk1rFWpvcqneqtZz-7RC3o,3741
90
90
  flet/controls/core/markdown.py,sha256=m6CE398R7uNpvNzxtRH3lS13It5-SBg79WvMToNidLo,11075
91
91
  flet/controls/core/merge_semantics.py,sha256=o2olHjIDU-QNKAc8JHdQABiZUKeR4dWJApOCEcBaFF4,627
92
- flet/controls/core/pagelet.py,sha256=VCcPOtlqfL-A0vnDKsUkVdKZkveFVvk5sK_8oWsESpU,4163
92
+ flet/controls/core/pagelet.py,sha256=A2p6jPvMg2ru2T3dKGMW0STJHtkPtf67zZ5TVelHrp8,4363
93
93
  flet/controls/core/placeholder.py,sha256=XqqP1QmjlboezVKIrwZHA4FCcl06cptqxvYQs7kVkB8,992
94
94
  flet/controls/core/reorderable_draggable.py,sha256=BOIV_-qxFQZEcbZ1gHXplDlhbqqo3gVd2zsKFY9iBLE,1038
95
95
  flet/controls/core/responsive_row.py,sha256=IQUwUn1lHGlDaso0Bevna4LVpdOxwu60pKS9TaX-gy0,2374
@@ -97,12 +97,12 @@ flet/controls/core/row.py,sha256=riNdAC15kB7zQdSf4NRizLuNfiHF6YxT837iLNyK58U,215
97
97
  flet/controls/core/safe_area.py,sha256=Yf2ZWmZpGZ_xpNw16xozbc99KTXXmyXGYo-gPlC9b84,2252
98
98
  flet/controls/core/screenshot.py,sha256=6X3f6rYaX7PHkvWM7gpFlyhA2xzt-M15ax-Nfd45n1g,1110
99
99
  flet/controls/core/semantics.py,sha256=tiRTyFMYYNIcj8kuiopZMPGxeo_n4L7eCchHcywColI,7413
100
- flet/controls/core/shader_mask.py,sha256=z4sr8RP2PnP-ooh0c5KNiUDLsHmj1S-R7ATm53j5CJo,1034
100
+ flet/controls/core/shader_mask.py,sha256=hMcREUEXgxf9LUvSrqAu00XFPCRJ_1cC969O27SMoYg,1502
101
101
  flet/controls/core/stack.py,sha256=Px_1SllMdOwDuMv8_xp28jwccy9wleSlaM3F5H5MXgA,2749
102
102
  flet/controls/core/text.py,sha256=u63G2TPDMzKcEnQwwsgfdtwU4_Bj_HjqFi7MdTdvG8o,10201
103
103
  flet/controls/core/text_span.py,sha256=-f60CaJ6H31_f6JcYLEogiwe14Lw_HdvCAccRRsANP8,2939
104
104
  flet/controls/core/transparent_pointer.py,sha256=BGDFuDWyDUIYOmwaEgMMks6OWS_lVjZObAw2M-3r2bQ,963
105
- flet/controls/core/view.py,sha256=J0C7VNl-qSyNlVMyCaesFFmuBFFskz9kS3-QsxqI2hc,5015
105
+ flet/controls/core/view.py,sha256=Mx8JZdrEmMY7xaOYRe3MbP6nPhYcqpbeNF2RJNi44w4,5901
106
106
  flet/controls/core/window.py,sha256=_WhYjRL46YjMY0Uy41bwps3d0iy1AP5JZL_aFgCCfv0,7404
107
107
  flet/controls/core/window_drag_area.py,sha256=fH0fczp-LUN9n3XgL85tEsQzVH1F_OoWjYwq6gSIS1E,1834
108
108
  flet/controls/core/canvas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -165,7 +165,7 @@ flet/controls/material/datatable.py,sha256=Rx937BudxdgModJeXImX9uXtrQAuVCiXujVmR
165
165
  flet/controls/material/date_picker.py,sha256=JCuU3-BcwFkb8KHQdcRQm0Scfdur7FGiMXElUX4WSxU,5336
166
166
  flet/controls/material/date_range_picker.py,sha256=7KJKE78bQYLJRdsTKgNu9JZbmyu3xh8xQUbrgwN5HwY,5350
167
167
  flet/controls/material/divider.py,sha256=Y7T5FYz8X0xHb137QiNMXNRwXRFEWsxLHa8P0DD0k3U,3182
168
- flet/controls/material/dropdown.py,sha256=OswSZaxdSosDL5qgfb_3kFJaBZpTLSxr6R-ZS1JbfAQ,10154
168
+ flet/controls/material/dropdown.py,sha256=YO_R05qLZV1rFRNQfPjEI9juMCRn8zigW6va-zqrSx8,10159
169
169
  flet/controls/material/dropdownm2.py,sha256=tl_YXIQFbg0824JgOUEiOUDb4z4CYFM7cpV4IbVrlyE,5679
170
170
  flet/controls/material/elevated_button.py,sha256=AjrLkxn1ViwGE7ms8aNlNTgaR1-qIFhN8aU254Hx9Vc,274
171
171
  flet/controls/material/expansion_panel.py,sha256=hIPBDCT3Gq7oI2UlgqjhUHjCQWvvwjjfhjRU79DFoSs,4276
@@ -180,7 +180,7 @@ flet/controls/material/list_tile.py,sha256=RIBO8ibubZjnGyWV4iTw7FOhMVNJM6jImoUYu
180
180
  flet/controls/material/menu_bar.py,sha256=78RmnKy9npkdcp8QYqp4kHqXnVHaZWkRNqEURJISGZg,2250
181
181
  flet/controls/material/menu_item_button.py,sha256=nlxXnBgJfB7oJ1F-7PuQy-67nmYTxglZ14u4uGf63kc,2566
182
182
  flet/controls/material/navigation_bar.py,sha256=HzSiMT6P6bgkxz-d1iWxRNACMuOqnPKi2qbLBmp7BCg,4998
183
- flet/controls/material/navigation_drawer.py,sha256=_Wraal9cxMqyXUbDC26wMEUWlWu0pVT7V28DR-MCoQE,3794
183
+ flet/controls/material/navigation_drawer.py,sha256=zK1jm9UNdPMpoG9hdQgNbkJ5Oacgs8pTuRAVBTsRuP8,3679
184
184
  flet/controls/material/navigation_rail.py,sha256=bnzSJ8LKV-Y7GUPslX7cTpkgnnzjsHp0DftFUp-5l2c,7856
185
185
  flet/controls/material/outlined_button.py,sha256=cwPkXRX_HnO3896Be4onbIFpIaVo8632lSK-5QIh3pc,3036
186
186
  flet/controls/material/popup_menu_button.py,sha256=iYBDno7UZcoqnpQpdA5JRCb9Fb1QrsSNDV-voGY8tnQ,4820
@@ -193,8 +193,8 @@ flet/controls/material/reorderable_list_view.py,sha256=iH87xlj7pIK1Kf-nQk5_PJ1sW
193
193
  flet/controls/material/search_bar.py,sha256=vqq7HeQmdOwCwn6TVes4OKjNwN4FzdqoRiWpT95Q4KE,8770
194
194
  flet/controls/material/segmented_button.py,sha256=f01DPN_QbUvzGS8tEilASVI6VFQwURDZ-uy2en_0U74,5510
195
195
  flet/controls/material/selection_area.py,sha256=KYjMBMuuSKmi6sKBl0UZgZurBOeJMbgNazi-jsR1KU4,1032
196
- flet/controls/material/slider.py,sha256=zV0Jres_HPwP590kNe663GeML9gIx4U24W_R7BpCV6o,6952
197
- flet/controls/material/snack_bar.py,sha256=8X3P_TgHBAWafMzaC6NskPey2_k-JeheL29PrgxAVYc,7374
196
+ flet/controls/material/slider.py,sha256=yTcZ_FruFHUiPHIlJqq4F3EIvTYss6pXC2gWyX9Jqzk,7017
197
+ flet/controls/material/snack_bar.py,sha256=1OmcukqSUD7I_0-KfpBcnXsRUYHFsseYN_6RC82CwUg,7463
198
198
  flet/controls/material/submenu_button.py,sha256=xDGBjZLT22Pi0UrRnUQFx9RAl7oJEWChuP5929rEkeE,3193
199
199
  flet/controls/material/switch.py,sha256=JLAPcOq0XzIkw1_HmsmBukROV9zBAkm-MZt8iqIKKXg,7030
200
200
  flet/controls/material/tabs.py,sha256=WIGsEs6lpw3LwqWsgIAJ4a0PpWKgLVOKkZRKfarnNY4,18565
@@ -202,7 +202,7 @@ flet/controls/material/text_button.py,sha256=xAHx613EN07MT9fuWhvp7oUQ6zZ7Gw7rtsO
202
202
  flet/controls/material/textfield.py,sha256=veYqSHOz_YDBjQsd-cK8ALxrgtWyy50p_Yyj51biPSA,12909
203
203
  flet/controls/material/time_picker.py,sha256=Jj1snTHdZdbG40d0AYrt2mwrXxxFEU-TfDcT6pH6Y5Q,3229
204
204
  flet/controls/material/tooltip.py,sha256=PTqJiiE95z4WCTlvCx7i3vA-gGwphUT7w_2oXMiiVtY,5636
205
- flet/controls/material/vertical_divider.py,sha256=kOqmL4XoL6tfRHoXA3oJurvIaixwn54Qf6ATC0-CT48,2752
205
+ flet/controls/material/vertical_divider.py,sha256=WXyGmBzH1PC4iLWazMUGDu7EsfGKbPcULaEKcDO7mus,3335
206
206
  flet/controls/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
207
  flet/controls/services/browser_context_menu.py,sha256=orB2vzQmZ3TvgEdZV1NUUkcQkEs49uFr9unyum2J0ug,592
208
208
  flet/controls/services/clipboard.py,sha256=XWp8OqFBUwd1ULeQ35nufGI_yR0WqNauWv8Zf1CHR0k,846
@@ -227,7 +227,7 @@ flet/pubsub/pubsub_hub.py,sha256=7fEHZP9vON5LKt6hzg38EcyOtfyHwyJGG3NUynNe2LQ,654
227
227
  flet/security/__init__.py,sha256=LcBftVee6pXMB2MiDsc0PPUXnTlR2CT53VAPiPadaHI,2189
228
228
  flet/testing/__init__.py,sha256=Yb9e6h11b2hV7O3TuqsJ7zwFAgNcbB7tY7Gp2ssxtN4,176
229
229
  flet/testing/finder.py,sha256=Rqv4qwjMcVx4ZYAJgZgGT2GVH5OR4ZgoQeKj5ZsFsRc,346
230
- flet/testing/flet_test_app.py,sha256=adDF_CPo9nWXyGxllYVDRt4skq7yfNQoqI2RpFZUTcQ,16580
230
+ flet/testing/flet_test_app.py,sha256=uCIqCK6sGfC8rnNMmNYWgm8i_LO0ftZSCFM3J6p2_tg,17538
231
231
  flet/testing/tester.py,sha256=_DSRFQQoGISve5JR2nq3AdSbUf18E6FfG3ytRD5tAfo,4946
232
232
  flet/utils/__init__.py,sha256=fWHBR8S4g9mX1q9cFA8khZLGKDb9kIbiyH5_ny87lg8,1823
233
233
  flet/utils/browser.py,sha256=Z2PomJjClBXRRiPvGP7WRzbguvXQ8W2HQAzd_A5cmvE,157
@@ -247,8 +247,8 @@ flet/utils/platform_utils.py,sha256=U4cqV3EPi5QNYjbhfZmtk41-KMtI_P7KvVdnZzMOgJA,
247
247
  flet/utils/slugify.py,sha256=e-lsoDc2_dk5jQnySaHCU83AA4O6mguEgCEdk2smW2Y,466
248
248
  flet/utils/strings.py,sha256=R63_i7PdSAStCDPJ-O_WHBt3H02JQ14GSbnjLIpPTUc,178
249
249
  flet/utils/vector.py,sha256=pYZzjldBWCZbSeSkZ8VmujwcZC7VBWk1NLBPA-2th3U,3207
250
- flet-0.70.0.dev6491.dist-info/METADATA,sha256=rUzQIZhYg6rpcuDY8r4xDUVugwU5-pw0gVgRCAep8qk,6109
251
- flet-0.70.0.dev6491.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
252
- flet-0.70.0.dev6491.dist-info/entry_points.txt,sha256=mbBhHNUnLHiDqR36WeJrfLJU0Y0y087-M4wagQmaQ_Y,39
253
- flet-0.70.0.dev6491.dist-info/top_level.txt,sha256=HbLrSnWJX2jZOEZAI14cGzW8Q5BbOGTtE-7knD5FDh0,5
254
- flet-0.70.0.dev6491.dist-info/RECORD,,
250
+ flet-0.70.0.dev6516.dist-info/METADATA,sha256=tKDoYqolUlX0kTMNpSqdq7SiGUAaHXBCL6Dvtl6rEjE,6109
251
+ flet-0.70.0.dev6516.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
252
+ flet-0.70.0.dev6516.dist-info/entry_points.txt,sha256=mbBhHNUnLHiDqR36WeJrfLJU0Y0y087-M4wagQmaQ_Y,39
253
+ flet-0.70.0.dev6516.dist-info/top_level.txt,sha256=HbLrSnWJX2jZOEZAI14cGzW8Q5BbOGTtE-7knD5FDh0,5
254
+ flet-0.70.0.dev6516.dist-info/RECORD,,