-
Notifications
You must be signed in to change notification settings - Fork 24.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding support for secureTextEntry to TextInput #362
Conversation
@@ -47,6 +47,7 @@ var RCTTextViewAttributes = merge(ReactIOSViewAttributes.UIView, { | |||
mostRecentEventCounter: true, | |||
placeholder: true, | |||
placeholderTextColor: true, | |||
secureTextEntry: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this not make it default to true instead of false?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, the default is false. That just specifies that those attributes are valid
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, whoops, thanks! 👍
On Mar 28, 2015, at 9:00 AM, Cory Smith notifications@github.com wrote:
In Libraries/Components/TextInput/TextInput.ios.js:
@@ -47,6 +47,7 @@ var RCTTextViewAttributes = merge(ReactIOSViewAttributes.UIView, {
mostRecentEventCounter: true,
placeholder: true,
placeholderTextColor: true,
- secureTextEntry: true,
No, the default is false. That just specifies that those attributes are valid—
Reply to this email directly or view it on GitHub.
This has been done in #265. |
Fix for #351