Feature: Add multi-line input. (#630)

This commit is contained in:
Arthur Sonzogni
2023-05-02 13:32:37 +02:00
committed by GitHub
parent 6215240b37
commit 7de4f8683d
33 changed files with 1471 additions and 690 deletions

View File

@@ -51,8 +51,9 @@ Component Checkbox(ConstStringRef label,
bool* checked,
Ref<CheckboxOption> option = CheckboxOption::Simple());
Component Input(StringRef content, Ref<InputOption> option = {});
Component Input(StringRef content,
ConstStringRef placeholder,
StringRef placeholder,
Ref<InputOption> option = {});
Component Menu(ConstStringListRef entries,