7576457
7576457
I have the same problem. Is it because flet cannot build libraries with dependencies in other languages? requirements.txt: ``` pyrebase4 flet flet_contrib ```
A similar issue, except that I'm testing my application on a mobile device, not on the web. Fonts and images aren't displaying after I updated the application from the App...
> @prasterphilipp, @Klu1d, please don't just mention having thesame error, but also attach some minimal reproducible code with the issue so we can save time and be of help. You're...
I'm testing through the official Flet app in the App Store, and this issue started after updating to 0.21.1 ### Code: ```python import flet as ft def main(page: ft.Page): page.fonts...
> Remove `./assets` from image URL. If I remove './assets', then I get the second option of events from my response
To achieve smooth scrolling, the documentation suggests using ft.ListView https://flet.dev/docs/controls/listview/
I'm encountering the same error when running any flet code on my Linux Debian system. I tried it on Windows, and everything works fine. ``` DeprecationWarning: The python_jwt module is...
I apologize for not providing a response earlier. I'm not entirely sure what the issue was, but I made some changes to the project architecture and reinstalled the latest version...
> Sorry, what was the issue? It seems I rushed again. Please, check the code I provided for versions 0.20 and 0.21.1.
> Accepted formats: https://api.flutter.dev/flutter/dart-core/DateTime/parse.html ```python class TimeRange: def __init__(self, start_date, end_date): #self.start_date = datetime.strptime(events[0]['date_start'].replace(' ', '_')start_date, '%Y-%m-%d_%H:%M:%S') self.start_date = datetime.strptime(start_date, '%Y-%m-%d_%H:%M:%S') self.end_date = datetime.strptime(end_date, '%Y-%m-%d_%H:%M:%S') print(self.start_date) ```  My format...