Feodor Fitsner

Results 288 comments of Feodor Fitsner

I'm thinking... it's not ideal of course, but could it be a solution if we move setting value to a clipboard to a client (Flutter) side, kind of: ```python ElevatedButton("Copy...

Why would we need that?

When you share a repro code please include imports as well.

A working example: ```python import flet from flet import Page, Tab, Tabs, Text def main(page: Page): # page.add(self.menu) page.add( Tabs( selected_index=0, on_change=lambda x: print(x), tabs=[ Tab( text="code", content=Text("Code"), ), Tab(text="active"),...

It is confusing, agree. It's how Flutter layout mechanism works - it's different from HTML. I'm working on adding more checks and messages to prevent/diagnose layout issues like that. Leaving...

It looks like the video is currently supported on web, iOS and Android platforms only: https://pub.dev/packages/video_player

I tried the following code on both macOS and web clients and couldn't reproduce the issue: ```python import logging import flet from flet import Dropdown, ElevatedButton, Page, Text, colors, dropdown...

Gosh, there is something to do with encoding while running subprocess and grabbing its output and it's especially nasty on Windows. I've tried a few tricks but no avail :(