We can catch mouse events

This commit is contained in:
Clement Roblot
2024-08-27 17:35:21 +07:00
committed by ArthurSonzogni
parent 75abd75b67
commit 1325256aa9
6 changed files with 71 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ int main() {
hbox(text(" First name : "), input_first_name->Render()),
hbox(text(" Last name : ") | selectable(), input_last_name->Render()),
hbox(text(" Password : "), input_password->Render()),
hbox(text(" Phone num : "), input_phone_number->Render()),
hbox(text(" Phone num : "), input_phone_number->Render()) | selectable(),
separator(),
text("Hello " + first_name + " " + last_name),
text("Your password is " + password),