forked from AbleOS/ableos
27 lines
560 B
Plaintext
27 lines
560 B
Plaintext
/*
|
|
the following snippet lays out the following.
|
|
10 11
|
|
*/
|
|
(vertical
|
|
(label "10")
|
|
(label "11"))
|
|
|
|
|
|
/*
|
|
Each button must have an ID. This ID must be unique per button or the buttons with the same
|
|
ID will be treated as the same button.
|
|
*/
|
|
(button id:8)
|
|
|
|
|
|
/*
|
|
This unique ID rull applies to any interactable element.
|
|
*/
|
|
(label interactive:true id:9)
|
|
|
|
|
|
/*
|
|
The ID is used to send a message to the buffer of the process that handles UI.
|
|
The following code will handle displaying text locally and also sending the delta change to the buffer.
|
|
*/
|
|
(line-edit id:10) |