DVUI

name

Parameters

#
self:demoKind
demoKind

Source

Implementation

#
pub fn name(self: demoKind) []const u8 {
        return switch (self) {
            .basic_widgets => "Basic Widgets",
            .applets => "Applets",
            .text_entry => "Text Entry",
            .styling => "Styling",
            .theming => "Theming",
            .layout => "Layout",
            .text_layout => "Text Layout",
            .plots => "Plots",
            .reorder_tree => "Reorder / Tree",
            .menus => "Menus / Focus",
            .scrolling => "Scrolling",
            .scroll_canvas => "Scroll Canvas",
            .dialogs => "Dialogs / Toasts",
            .animations => "Animations",
            .struct_ui => "Struct UI",
            .debugging => "Debugging",
            .grid => "Grid/Table",
        };
    }