python-flet

How to delete the values of flet python text fields after clicking the button?

How to delete the values of flet python text fields after clicking the button? Question: I use Flet Python framework And I want to delete its values after clicking on the button and store them in the data table def main(page: ft.Page): def btn_click(e): if not sstid.value: sstid.error_text = "err" page.update() else: my_dict["sstid"] = sstid.value …

Total answers: 1