Text Configs
Learn about the config components that allow the user to enter text.
Common text inputs
Normal Text
@Text(
name = "Write something here!",
placeholder = "please?", // optional, text to display when there is nothing written there
secure = false, multiline = false
)
public static String hi = "";
Text box

When to use text inputs versus boxes
Secure Text Input

Last updated
Was this helpful?