Files
herolib/lib/ui/template/yesno.v
2025-10-12 12:30:19 +03:00

15 lines
269 B
V

module template
import incubaid.herolib.ui.uimodel { YesNoArgs }
// yes is true, no is false
// args:
// - description string
// - question string
// - warning string
// - clear bool = true
//
pub fn (mut c UIExample) ask_yesno(args YesNoArgs) !bool {
return true
}