Advertisement
techblog

flet basic app

Apr 13th, 2023
568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. import flet as ft
  2.  
  3. def main(page: ft.Page):
  4.     # add/update controls on Page
  5.     pass
  6.  
  7. ft.app(target=main)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement