diff --git a/docs/pushnotificationios.html b/docs/pushnotificationios.html index 45604b44e37..b2df5792365 100644 --- a/docs/pushnotificationios.html +++ b/docs/pushnotificationios.html @@ -1,8 +1,18 @@
Handle push notifications for your app, including permission handling and icon badge number.
To get up and running, configure your notifications with Apple -and your server-side system. To get an idea, this is the Parse guide.
Sets the badge number for the app icon on the home screen
Gets the current badge number for the app icon on the home screen
Attaches a listener to remote notifications while the app is running in the -foreground or the background.
The handler will get be invoked with an instance of PushNotificationIOS
Requests all notification permissions from iOS, prompting the user's -dialog box.
See what push permissions are currently enabled. callback will be
+and your server-side system. To get an idea, this is the Parse guide.
Sets the badge number for the app icon on the home screen
Gets the current badge number for the app icon on the home screen
Attaches a listener to remote notification events while the app is running +in the foreground or the background.
Valid events are:
notification : Fired when a remote notification is received. The
+handler will be invoked with an instance of PushNotificationIOS.register: Fired when the user registers for remote notifications. The
+handler will be invoked with a hex string representing the deviceToken.Requests notification permissions from iOS, prompting the user's +dialog box. By default, it will request all notification permissions, but +a subset of these can be requested by passing a map of requested +permissions. +The following permissions are supported:
alertbadgesoundIf a map is provided to the method, only the permissions with truthy values +will be requested.
See what push permissions are currently enabled. callback will be
invoked with a permissions object:
alert :booleanbadge :booleansound :booleanRemoves the event listener. Do this in componentWillUnmount to prevent
memory leaks
An initial notification will be available if the app was cold-launched from a notification.
The first caller of popInitialNotification will get the initial
diff --git a/docs/scrollview.html b/docs/scrollview.html
index 37a4221af84..8ba9040b8e2 100644
--- a/docs/scrollview.html
+++ b/docs/scrollview.html
@@ -28,7 +28,7 @@ decelerates after the user lifts their finger. Reasonable choices include
- Normal: 0.998 (the default)
- Fast: 0.9
When true, the ScrollView will try to lock to only vertical or horizontal scrolling while dragging. The default value is false.
When true, the scroll view's children are arranged horizontally in a row -instead of vertically in a column. The default value is false.
Determines whether the keyboard gets dismissed in response to a drag. +instead of vertically in a column. The default value is false.
Determines whether the keyboard gets dismissed in response to a drag. - 'none' (the default), drags do not dismiss the keyboard. - 'onDrag', the keyboard is dismissed when a drag begins. - 'interactive', the keyboard is dismissed interactively with the drag diff --git a/docs/statusbarios.html b/docs/statusbarios.html index 1c3a9a0b6ff..a39b16ae64f 100644 --- a/docs/statusbarios.html +++ b/docs/statusbarios.html @@ -1,4 +1,4 @@ -
When the clear button should appear on the right side of the text view
If true, clears the text field automatically when editing begins
If you really want this to behave as a controlled component, you can set this true, but you will probably see flickering, dropped keystrokes, and/or laggy typing, depending on how you process onChange events.
If false, text is not editable. Default value is true.
If true, the keyboard disables the return key when there is no text and -automatically enables it when there is text. Default value is false.
Determines which keyboard to open, e.g.numeric.
If true, the text input can be multiple lines. Default value is false.
Callback that is called when the text input is blurred
Callback that is called when the text input's text changes.
Callback that is called when text input ends.
Callback that is called when the text input is focused
Invoked on mount and layout changes with {x, y, width, height}.
Callback that is called when the text input's submit button is pressed.
If true, the text input obscures the text entered so that sensitive text +automatically enables it when there is text. Default value is false.
Determines which keyboard to open, e.g.numeric.
If true, the text input can be multiple lines. Default value is false.
Callback that is called when the text input is blurred
Callback that is called when the text input's text changes.
Callback that is called when text input ends.
Callback that is called when the text input is focused
Invoked on mount and layout changes with {x, y, width, height}.
Callback that is called when the text input's submit button is pressed.
If true, the text input obscures the text entered so that sensitive text like passwords stay secure. Default value is false.
The string that will be rendered before text input has been entered
The text color of the placeholder string
Determines how the return key should look.
If true, selected the text automatically when editing begins
See DocumentSelectionState.js, some state that is responsible for maintaining selection information for a document
Styles
Used to locate this view in end-to-end tests.
The default value for the text input
Do not use unless you have a very good reason. All the elements that respond to press should have a visual feedback when touched. This is -one of the primary reason a "web" app doesn't feel "native".