File size: 198 Bytes
e2febbc
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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)