ytflethugg / main.py
TahaRasouli's picture
Update main.py
e2febbc verified
raw
history blame contribute delete
No virus
198 Bytes
import flet as ft
import flet_fastapi
async def main(page:ft.Page):
await page.add_async(
ft.Text('hei from flet huggingface', size=30, weight='bold')
)
app = flet_fastapi.app(main)