SourceClass Checkbox
from egui import Checkboxclass Checkbox:Boolean on/off control with text label.
Usually you'd use Ui.checkbox instead.
Methods§
@staticmethod
def from_widget_text(value: Mutable, text: WidgetText) -> Checkbox§
Sourcedef indeterminate(self, /, indeterminate: bool) -> Checkbox§
Display an indeterminate state (neither checked nor unchecked)
This only affects the checkbox's appearance. It will still toggle its boolean value when clicked.