DVUI

TextEntryNumberInitOptions

Parameters

#
T:type
type

Source

Implementation

#
pub fn TextEntryNumberInitOptions(comptime T: type) type {
    return struct {
        min: ?T = null,
        max: ?T = null,
        value: ?*T = null,
        show_min_max: bool = false,
        text: ?[]const u8 = null,
        text_limit: ?u8 = null,
        placeholder: ?[]const u8 = null,
    };
}