Back to course

TextField and PasswordField

JavaFX 0 to Hero

TextField and PasswordField

Input fields allow users to type data.

  • TextField: For normal text.
  • PasswordField: For sensitive data (masks input).

java TextField nameField = new TextField(); PasswordField passField = new PasswordField(); String input = nameField.getText();