Add Keyboard and Select to list of widgets

This commit is contained in:
Trevor Slocum 2024-10-23 22:03:19 -07:00
parent 96eef101ab
commit 9b001db916
2 changed files with 14 additions and 10 deletions

View file

@ -22,7 +22,9 @@
- Frame: Widget container. All child widgets are displayed at once. Child widgets are not repositioned by default.
- Grid: Highly customizable cell-based layout. Each widget added to the Grid may span multiple cells.
- Input: Text input widget. The Input widget is simply a Text widget that also accepts user input.
- Keyboard: On-screen keyboard.
- List: List of widgets as selectable items.
- Select: Dropdown selection widget.
- Sprite: Resizable image.
- Text: Text display widget.
- Window: Widget paging mechanism. Only one widget added to a window is displayed at a time.

22
doc.go
View file

@ -8,16 +8,18 @@ based on official widgets.
The following official widgets are available:
Box - Building block for creating other widgets.
Button - Clickable button.
Flex - Flexible stack-based layout. Each Flex widget may be oriented horizontally or vertically.
Frame - Widget container. All child widgets are displayed at once. Child widgets are not repositioned by default.
Grid - Highly customizable cell-based layout. Widgets added to the Grid may span multiple cells.
Input - Text input widget. The Input widget is simply a Text widget that also accepts user input.
List - List of widgets as selectable items.
Sprite - Resizable image.
Text - Text display widget.
Window - Widget paging mechanism. Only one widget added to a window is displayed at a time.
Box - Building block for creating other widgets.
Button - Clickable button.
Flex - Flexible stack-based layout. Each Flex widget may be oriented horizontally or vertically.
Frame - Widget container. All child widgets are displayed at once. Child widgets are not repositioned by default.
Grid - Highly customizable cell-based layout. Widgets added to the Grid may span multiple cells.
Input - Text input widget. The Input widget is simply a Text widget that also accepts user input.
Keyboard - On-screen keyboard.
List - List of widgets as selectable items.
Select - Dropdown selection widget.
Sprite - Resizable image.
Text - Text display widget.
Window - Widget paging mechanism. Only one widget added to a window is displayed at a time.
# Input Propagation