We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The dearpygui-ext documentation still needs some love. It's here, but it's empty. https://dearpygui-ext.readthedocs.io/en/latest/index.html
Cothren's example should be added.
import dearpygui.dearpygui as dpg import dearpygui.demo as demo from dearpygui_ext.logger import mvLogger dpg.create_context() dpg.create_viewport() log = mvLogger() log.log("log") log.log_debug("log debug") log.log_info("log info") log.log_warning("log warning") log.log_error("log error") log.log_critical("log critical") demo.show_demo() with dpg.window(label="tutorial", width=500, height=500, show=False): dpg.add_button(label="Press me", callback=lambda:dpg.toggle_viewport_fullscreen()) # main loop dpg.show_viewport() dpg.setup_dearpygui() dpg.start_dearpygui() dpg.destroy_context()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The dearpygui-ext documentation still needs some love. It's here, but it's empty.
https://dearpygui-ext.readthedocs.io/en/latest/index.html
Cothren's example should be added.
The text was updated successfully, but these errors were encountered: