DearPyGui_Ext
DearPyGui_Ext copied to clipboard
Dear PyGui Extensions: A collection of useful tools, abstractions, and simplification layers built with/for Dear PyGui users.
## Simple Table ### Description Added the basis of a simple table (a table that only shows texts, like numbers or words) ### Available commands: - _set / get_ data...
**Is your feature request related to a problem? Please describe.** I cannot see the entire log sometimes in the logging widget due to the lack of horizontal scrolling. **Describe the...
**Description:** To improve the usefulness of the mvLogger for use with the logging module **Changes:** Match (mvLogger) log levels with module logging Set a distinct color for error_theme Add demo...
Feel free to comment additional suggestions. ## Background Although the table API is powerful, it is not the most friendly API for users wanting to quickly display data and requires...
## Version of DearPyGui_Ext Version: 0.9.4 Operating System: Windows 10 ## My Issue/Question When performing pip install for latest version 0.9.4 I get below warning and then pip installs 0.9.3...
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. ```Python import dearpygui.dearpygui as dpg import dearpygui.demo as demo from dearpygui_ext.logger import...
**Is your feature request related to a problem? Please describe.** I use mvLogger a lot to print out interesting things about my application as I'm designing, debugging, etc. However, the...
Consider spaces: https://github.com/hoffstadt/DearPyGui_Ext/blob/2dcc147c2f3bb2467f70cfbf7521203fb006f4a5/dearpygui_ext/logger.py#L66C46-L66C46 ``` if level == 0: message = "[TRACE] " + message theme = self.trace_theme elif level == 1: message = "[DEBUG] " + message theme = self.debug_theme...
EditThemePlugin adds the theme menu item to your application that is using dearpygui as the GUI. Just insert the code myThemePlugin = EditThemePlugin() in your dpg.menu_bar or dpg.viewport_menu_bar This plugin...
ChooseFontsPlugin adds the font menu item to your application that is using dearpygui as the GUI. Just insert the code myFontsPlugin = EditFontsPlugin() in your dpg.menu_bar or dpg.viewport_menu_bar. This plugin...