Email¶
The Email form element is used for an email address value field with the email keyboard layout.
Example¶
Kotlin¶
email(1) {
value = "example@example.com"
}
Java¶
List<BaseFormElement<?>> elements = new ArrayList<>();
FormEmailEditTextElement email = new FormEmailEditTextElement(1);
email.setValue("example@example.com");
elements.add(email);