for person who is looking for pythonic popup messagebox in dearpygui, hope it can help
target:
do_sth_step1(...)
user_response = msgbox('Confirm?') # Yes/No
if user_response == 'Yes':
do_sth_step2(...)
for person who is looking for pythonic popup messagebox in dearpygui, hope it can help
target:
do_sth_step1(...)
user_response = msgbox('Confirm?') # Yes/No
if user_response == 'Yes':
do_sth_step2(...)
and the solution found:
and asyncio way: