19 declare(strict_types=1);
38 $ui = $DIC->ui()->factory();
42 $text_input = $ui->input()->field()->text(
"Basic Input",
"Just some basic input 43 with some default value.")
44 ->withValue(
"Default Value");
47 $form = $ui->input()->container()->form()->standard(
"#", [$text_input]);
with_value()
description: > Example shows how to create and render a basic text input field with an value attache...