Skip to content

LabelledMaskedMultilineTextInput

Component | Source Code

extends MaskedMultilineTextInputProps, LabelledProps

Props Inheritance Hierarchy: Omit<MultilineTextInputProps, “onChangeText”> -> MaskedMultilineTextInputProps & LabelledProps




What position the label text appears relative to the input.




Mask to apply to the input. The masking is applied using maskText. Because this component is intended to allow multiline text, your regex does not need to explicitly allow newlines.

const onlyNumbersMask = /\d/;

Handler for when the user attempts to change the input.