Feodor Fitsner

Results 288 comments of Feodor Fitsner

FYI: CI is failing: https://ci.appveyor.com/project/flet-dev/flet/builds/44694994/job/d9o2avbg4d27u9gd

That what CI is for :)

Are regular expressions still used? Looks like there is some unused code: https://github.com/flet-dev/flet/pull/280/files#diff-254a2814a7c09b3230e978750f3dab115e3fc59d1e243d1e62ceff2e051a5124R74-R75 https://github.com/flet-dev/flet/pull/280/files#diff-254a2814a7c09b3230e978750f3dab115e3fc59d1e243d1e62ceff2e051a5124R84

It resets scrolling position because the entire list is being re-created every time an item is add/updated/deleted. At the moment Flet uses [control's hash code](https://github.com/flet-dev/flet/blob/main/sdk/python/flet/control.py#L336-L342) to determine if the control...

What do you mean by "on-demand data transfer"? Right now Flet sends diffs. Per my tests sending everything every time is very slow and ineffective. I mean it's "alright" for...

Use `UserContro.did_mount` to access `page`: ```python import flet class userControl(flet.UserControl): def build(self): print(type(self)) def did_mount(self): self.page.padding = 0 self.page.update() def main(page: flet.Page): page.add(userControl()) flet.app(target=main) ```

Closing in favor of https://github.com/flet-dev/flet/issues/489

https://stackoverflow.com/questions/61270081/how-can-i-enable-tab-in-textfield-of-flutter-web-version

When Flet client is started on macOS with `open Flet.app` (which is a bundle) a new `open` process is started which starts in its turn `flet` process which stays active...