MusienkoAnton
MusienkoAnton
Have the similar situation, with my project. Flet version: 0.21.2 Operating system: windows 11 `Compiling 'C:\\Users\\sa090\\AppData\\Local\\Temp\\serious_python_temp2a5dafec\\views\\zipparts_view.py'... Deleting Flutter bootstrap directory C:\Users\sa090\AppData\Local\Temp\flet_flutter_build_HrjhsnPRh2 Error building Flet app - see the log of...
> ``` > (.venv) PS C:\Users\nacho\qr-app> flet build windows .\flet-qr-app\ > Creating Flutter bootstrap project from gh:flet-dev/flet-build-template with ref 0.22.1...OK > Customizing app icons and splash images...OK > Generating app...
In same issue Here link wich help me https://github.com/flet-dev/examples/issues/104#issuecomment-1851756942
I try to make app with simple code `import flet as ft import time def main(page: ft.Page): def handler(e): time.sleep(3) page.add(ft.Text("Handler clicked")) page.add( ft.ElevatedButton("Call handler", on_click=handler) ) ft.app(main) `