diff --git a/releases/next/docs/flatlist.html b/releases/next/docs/flatlist.html
index 32fbcd756c3..0ef46e283ca 100644
--- a/releases/next/docs/flatlist.html
+++ b/releases/next/docs/flatlist.html
@@ -25,7 +25,7 @@ sure to also set the refreshing prop correctly.
Set this true while waiting for new data from a refresh.
Takes an item from data and renders it into the list. Typical usage:
Provides additional metadata like index if you need it.
See ViewabilityHelper for flow type and further documentation.
Scrolls to the end of the content. May be janky without getItemLayout prop.
Scrolls to the item at a the specified index such that it is positioned in the viewable area diff --git a/releases/next/docs/integration-with-existing-apps.html b/releases/next/docs/integration-with-existing-apps.html index cc3edeeecbe..06939d0c391 100644 --- a/releases/next/docs/integration-with-existing-apps.html +++ b/releases/next/docs/integration-with-existing-apps.html @@ -91,6 +91,8 @@ target 'NumberTileGame' 'RCTWebSocket', # needed for debugging # Add any other subspecs you want to use in your project ] + # Explicitly include Yoga if you are using RN >= 0.42.0 + pod "Yoga", :path => "../node_modules/react-native/ReactCommon/yoga" end
false.true means that pressing return will blur the field and trigger the
-onSubmitEditing event instead of inserting a newline into the field.If true, caret is hidden. The default value is false.
Provides an initial value that will change when the user starts typing.
+onSubmitEditing event instead of inserting a newline into the field.
If true, caret is hidden. The default value is false.
Provides an initial value that will change when the user starts typing. Useful for simple use-cases where you do not want to deal with listening to events and updating the value prop to keep the controlled state in sync.
If false, text is not editable. The default value is true.
Determines which keyboard to open, e.g.numeric.
The following values work across platforms:
defaultnumericemail-addressphone-padLimits the maximum number of characters that can be entered. Use this instead of implementing the logic in JS to avoid flicker.
If true, the text input can be multiple lines.