We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 944a58e commit cd83933Copy full SHA for cd83933
packages/rff-rn-paper/src/components/TextInput/index.tsx
@@ -47,7 +47,7 @@ export type TextInputProps = BaseInputProps &
47
/**
48
* Property that represents if show or hide the password text
49
*/
50
- secureTextEntry?: string;
+ secureTextEntry?: boolean;
51
52
* Property that represents the input styles
53
@@ -92,6 +92,9 @@ export const TextInput: React.FC<TextInputProps> = React.forwardRef(({
92
<PaperTextInput
93
{...InputProps}
94
{...TextInputProps}
95
+ label={label}
96
+ style={style}
97
+ secureTextEntry={secureTextEntry}
98
ref={textInputRef}
99
value={value}
100
error={error}
0 commit comments