diff --git a/docs/0.27/drawerlayoutandroid.html b/docs/0.27/drawerlayoutandroid.html index a5f1279a16a..68c51cd957d 100644 --- a/docs/0.27/drawerlayoutandroid.html +++ b/docs/0.27/drawerlayoutandroid.html @@ -228,7 +228,7 @@

drawerBackgroundColor

-

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

+

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

return (
   <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)">
   </DrawerLayoutAndroid>
diff --git a/docs/0.27/drawerlayoutandroid/index.html b/docs/0.27/drawerlayoutandroid/index.html
index a5f1279a16a..68c51cd957d 100644
--- a/docs/0.27/drawerlayoutandroid/index.html
+++ b/docs/0.27/drawerlayoutandroid/index.html
@@ -228,7 +228,7 @@
 
 

drawerBackgroundColor

-

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

+

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

return (
   <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)">
   </DrawerLayoutAndroid>
diff --git a/docs/0.27/navigatorios.html b/docs/0.27/navigatorios.html
index e2fe25ea2bd..ebb67a0c863 100644
--- a/docs/0.27/navigatorios.html
+++ b/docs/0.27/navigatorios.html
@@ -166,6 +166,7 @@
 
 

interactivePopGestureEnabled

+

A Boolean value that indicates whether the interactive pop gesture is enabled. Useful for enabling/disabling the back swipe navigation gesture. If this prop is not provided, the default behavior is for the back swipe gesture to be enabled when the navigation bar is shown and disabled when the navigation bar is hidden. Once you've provided the interactivePopGestureEnabled prop, you can never restore the default behavior.

diff --git a/docs/0.27/navigatorios/index.html b/docs/0.27/navigatorios/index.html index e2fe25ea2bd..ebb67a0c863 100644 --- a/docs/0.27/navigatorios/index.html +++ b/docs/0.27/navigatorios/index.html @@ -166,6 +166,7 @@

interactivePopGestureEnabled

+

A Boolean value that indicates whether the interactive pop gesture is enabled. Useful for enabling/disabling the back swipe navigation gesture. If this prop is not provided, the default behavior is for the back swipe gesture to be enabled when the navigation bar is shown and disabled when the navigation bar is hidden. Once you've provided the interactivePopGestureEnabled prop, you can never restore the default behavior.

diff --git a/docs/0.27/scrollview.html b/docs/0.27/scrollview.html index 96850a9eb53..c3223116c19 100644 --- a/docs/0.27/scrollview.html +++ b/docs/0.27/scrollview.html @@ -69,7 +69,7 @@ } });
Edit

ScrollView

Component that wraps platform ScrollView while providing integration with touch locking "responder" system.

-

Keep in mind that ScrollViews must have a bounded height in order to work, since they contain unbounded-height children into a bounded container (via a scroll interaction). In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent views have bounded height. Forgetting to transfer {flex: 1} down the view stack can lead to errors here, which the element inspector makes easy to debug.

+

Keep in mind that ScrollViews must have a bounded height in order to work, since they contain unbounded-height children into a bounded container (via a scroll interaction). In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent views have bounded height. Forgetting to transfer {flex: 1} down the view stack can lead to errors here, which the element inspector makes quick to debug.

Doesn't yet support other contained responders from blocking this scroll view from becoming the responder.

Props

    @@ -451,6 +451,7 @@

    indicatorStyle

    The style of the scroll indicators.

    +
    • default (the default), same as black.
    • black, scroll indicator is black. This style is good against a white content background.
    • diff --git a/docs/0.27/scrollview/index.html b/docs/0.27/scrollview/index.html index 96850a9eb53..c3223116c19 100644 --- a/docs/0.27/scrollview/index.html +++ b/docs/0.27/scrollview/index.html @@ -69,7 +69,7 @@ } });
Edit

ScrollView

Component that wraps platform ScrollView while providing integration with touch locking "responder" system.

-

Keep in mind that ScrollViews must have a bounded height in order to work, since they contain unbounded-height children into a bounded container (via a scroll interaction). In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent views have bounded height. Forgetting to transfer {flex: 1} down the view stack can lead to errors here, which the element inspector makes easy to debug.

+

Keep in mind that ScrollViews must have a bounded height in order to work, since they contain unbounded-height children into a bounded container (via a scroll interaction). In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent views have bounded height. Forgetting to transfer {flex: 1} down the view stack can lead to errors here, which the element inspector makes quick to debug.

Doesn't yet support other contained responders from blocking this scroll view from becoming the responder.

Props

    @@ -451,6 +451,7 @@

    indicatorStyle

    The style of the scroll indicators.

    +
    • default (the default), same as black.
    • black, scroll indicator is black. This style is good against a white content background.
    • diff --git a/docs/0.27/textinput.html b/docs/0.27/textinput.html index 354b81b36ee..535186e04ae 100644 --- a/docs/0.27/textinput.html +++ b/docs/0.27/textinput.html @@ -69,7 +69,7 @@ } });
Edit

TextInput

A foundational component for inputting text into the app via a keyboard. Props provide configurability for several features, such as auto-correction, auto-capitalization, placeholder text, and different keyboard types, such as a numeric keypad.

-

The simplest use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A simple example:

+

The most basic use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A minimal example:

  <TextInput
     style={{height: 40, borderColor: 'gray', borderWidth: 1}}
     onChangeText={(text) => this.setState({text})}
@@ -180,7 +180,7 @@
 

defaultValue

-

Provides an initial value that will change when the user starts typing. Useful for simple use-cases where you don't want to deal with listening to events and updating the value prop to keep the controlled state in sync.

+

Provides an initial value that will change when the user starts typing. Useful for use-cases where you don't want to deal with listening to events and updating the value prop to keep the controlled state in sync.

@@ -428,7 +428,7 @@
TypeRequired

value

-

The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to simply setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

+

The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

diff --git a/docs/0.27/textinput/index.html b/docs/0.27/textinput/index.html index 354b81b36ee..535186e04ae 100644 --- a/docs/0.27/textinput/index.html +++ b/docs/0.27/textinput/index.html @@ -69,7 +69,7 @@ } });
Edit

TextInput

A foundational component for inputting text into the app via a keyboard. Props provide configurability for several features, such as auto-correction, auto-capitalization, placeholder text, and different keyboard types, such as a numeric keypad.

-

The simplest use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A simple example:

+

The most basic use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A minimal example:

  <TextInput
     style={{height: 40, borderColor: 'gray', borderWidth: 1}}
     onChangeText={(text) => this.setState({text})}
@@ -180,7 +180,7 @@
 
TypeRequired

defaultValue

-

Provides an initial value that will change when the user starts typing. Useful for simple use-cases where you don't want to deal with listening to events and updating the value prop to keep the controlled state in sync.

+

Provides an initial value that will change when the user starts typing. Useful for use-cases where you don't want to deal with listening to events and updating the value prop to keep the controlled state in sync.

@@ -428,7 +428,7 @@
TypeRequired

value

-

The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to simply setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

+

The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

diff --git a/docs/0.28/drawerlayoutandroid.html b/docs/0.28/drawerlayoutandroid.html index 230872ec23d..ce330d9bf50 100644 --- a/docs/0.28/drawerlayoutandroid.html +++ b/docs/0.28/drawerlayoutandroid.html @@ -228,7 +228,7 @@
TypeRequired

drawerBackgroundColor

-

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

+

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

return (
   <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)">
   </DrawerLayoutAndroid>
diff --git a/docs/0.28/drawerlayoutandroid/index.html b/docs/0.28/drawerlayoutandroid/index.html
index 230872ec23d..ce330d9bf50 100644
--- a/docs/0.28/drawerlayoutandroid/index.html
+++ b/docs/0.28/drawerlayoutandroid/index.html
@@ -228,7 +228,7 @@
 
 

drawerBackgroundColor

-

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

+

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

return (
   <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)">
   </DrawerLayoutAndroid>
diff --git a/docs/0.28/navigatorios.html b/docs/0.28/navigatorios.html
index f35159237dc..8aca9ddcb31 100644
--- a/docs/0.28/navigatorios.html
+++ b/docs/0.28/navigatorios.html
@@ -166,6 +166,7 @@
 
 

interactivePopGestureEnabled

+

A Boolean value that indicates whether the interactive pop gesture is enabled. Useful for enabling/disabling the back swipe navigation gesture. If this prop is not provided, the default behavior is for the back swipe gesture to be enabled when the navigation bar is shown and disabled when the navigation bar is hidden. Once you've provided the interactivePopGestureEnabled prop, you can never restore the default behavior.

diff --git a/docs/0.28/navigatorios/index.html b/docs/0.28/navigatorios/index.html index f35159237dc..8aca9ddcb31 100644 --- a/docs/0.28/navigatorios/index.html +++ b/docs/0.28/navigatorios/index.html @@ -166,6 +166,7 @@

interactivePopGestureEnabled

+

A Boolean value that indicates whether the interactive pop gesture is enabled. Useful for enabling/disabling the back swipe navigation gesture. If this prop is not provided, the default behavior is for the back swipe gesture to be enabled when the navigation bar is shown and disabled when the navigation bar is hidden. Once you've provided the interactivePopGestureEnabled prop, you can never restore the default behavior.

diff --git a/docs/0.28/textinput.html b/docs/0.28/textinput.html index b1951039145..7e3140647d3 100644 --- a/docs/0.28/textinput.html +++ b/docs/0.28/textinput.html @@ -69,7 +69,7 @@ } });
Edit

TextInput

A foundational component for inputting text into the app via a keyboard. Props provide configurability for several features, such as auto-correction, auto-capitalization, placeholder text, and different keyboard types, such as a numeric keypad.

-

The simplest use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A simple example:

+

The most basic use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A minimal example:

  <TextInput
     style={{height: 40, borderColor: 'gray', borderWidth: 1}}
     onChangeText={(text) => this.setState({text})}
@@ -180,7 +180,7 @@
 

defaultValue

-

Provides an initial value that will change when the user starts typing. Useful for simple use-cases where you don't want to deal with listening to events and updating the value prop to keep the controlled state in sync.

+

Provides an initial value that will change when the user starts typing. Useful for use-cases where you don't want to deal with listening to events and updating the value prop to keep the controlled state in sync.

@@ -428,7 +428,7 @@
TypeRequired

value

-

The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to simply setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

+

The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

diff --git a/docs/0.28/textinput/index.html b/docs/0.28/textinput/index.html index b1951039145..7e3140647d3 100644 --- a/docs/0.28/textinput/index.html +++ b/docs/0.28/textinput/index.html @@ -69,7 +69,7 @@ } });
Edit

TextInput

A foundational component for inputting text into the app via a keyboard. Props provide configurability for several features, such as auto-correction, auto-capitalization, placeholder text, and different keyboard types, such as a numeric keypad.

-

The simplest use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A simple example:

+

The most basic use case is to plop down a TextInput and subscribe to the onChangeText events to read the user input. There are also other events, such as onSubmitEditing and onFocus that can be subscribed to. A minimal example:

  <TextInput
     style={{height: 40, borderColor: 'gray', borderWidth: 1}}
     onChangeText={(text) => this.setState({text})}
@@ -180,7 +180,7 @@
 
TypeRequired

defaultValue

-

Provides an initial value that will change when the user starts typing. Useful for simple use-cases where you don't want to deal with listening to events and updating the value prop to keep the controlled state in sync.

+

Provides an initial value that will change when the user starts typing. Useful for use-cases where you don't want to deal with listening to events and updating the value prop to keep the controlled state in sync.

@@ -428,7 +428,7 @@
TypeRequired

value

-

The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to simply setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

+

The value to show for the text input. TextInput is a controlled component, which means the native value will be forced to match this value prop if provided. For most uses this works great, but in some cases this may cause flickering - one common cause is preventing edits by keeping value the same. In addition to setting the same value, either set editable={false}, or set/update maxLength to prevent unwanted edits without flicker.

diff --git a/docs/0.29/drawerlayoutandroid.html b/docs/0.29/drawerlayoutandroid.html index cb0c1a17d5c..879c26ab561 100644 --- a/docs/0.29/drawerlayoutandroid.html +++ b/docs/0.29/drawerlayoutandroid.html @@ -228,7 +228,7 @@
TypeRequired

drawerBackgroundColor

-

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

+

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

return (
   <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)">
   </DrawerLayoutAndroid>
diff --git a/docs/0.29/drawerlayoutandroid/index.html b/docs/0.29/drawerlayoutandroid/index.html
index cb0c1a17d5c..879c26ab561 100644
--- a/docs/0.29/drawerlayoutandroid/index.html
+++ b/docs/0.29/drawerlayoutandroid/index.html
@@ -228,7 +228,7 @@
 
 

drawerBackgroundColor

-

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

+

Specifies the background color of the drawer. The default value is white. If you want to set the opacity of the drawer, use rgba. Example:

return (
   <DrawerLayoutAndroid drawerBackgroundColor="rgba(0,0,0,0.5)">
   </DrawerLayoutAndroid>