diff --git a/docs/assets/DatePickerIOS/example.gif b/docs/assets/DatePickerIOS/example.gif
new file mode 100644
index 00000000000..3ed4e2fb7cb
Binary files /dev/null and b/docs/assets/DatePickerIOS/example.gif differ
diff --git a/docs/assets/DatePickerIOS/maximumDate.gif b/docs/assets/DatePickerIOS/maximumDate.gif
new file mode 100644
index 00000000000..2839bfc4d8c
Binary files /dev/null and b/docs/assets/DatePickerIOS/maximumDate.gif differ
diff --git a/docs/assets/DatePickerIOS/minuteInterval.png b/docs/assets/DatePickerIOS/minuteInterval.png
new file mode 100644
index 00000000000..be6efbdbd40
Binary files /dev/null and b/docs/assets/DatePickerIOS/minuteInterval.png differ
diff --git a/docs/assets/DatePickerIOS/mode.png b/docs/assets/DatePickerIOS/mode.png
new file mode 100644
index 00000000000..99e68367eca
Binary files /dev/null and b/docs/assets/DatePickerIOS/mode.png differ
diff --git a/docs/assets/KeyboardAvoidingView/example.gif b/docs/assets/KeyboardAvoidingView/example.gif
new file mode 100644
index 00000000000..caf378eccc6
Binary files /dev/null and b/docs/assets/KeyboardAvoidingView/example.gif differ
diff --git a/docs/next/datepickerios.html b/docs/next/datepickerios.html
index 8dbf70b8882..ed6ce3dbcbc 100644
--- a/docs/next/datepickerios.html
+++ b/docs/next/datepickerios.html
@@ -9,6 +9,46 @@ a controlled component, so you must hook in to the onDateChange cal
and update the date prop in order for the component to update, otherwise
the user's change will be reverted immediately to reflect props.date as the
source of truth.
This is a convenience wrapper around <VirtualizedList>,
-and thus inherits its props (as well as those of ScrollView) that aren't explicitly listed
+and thus inherits its props (as well as those of <ScrollView>) that aren't explicitly listed
here, along with the following caveats:
Internal state is not preserved when content scrolls out of the render window. Make sure all
diff --git a/docs/next/keyboardavoidingview.html b/docs/next/keyboardavoidingview.html
index 2d849ac099b..ceeccf93ece 100644
--- a/docs/next/keyboardavoidingview.html
+++ b/docs/next/keyboardavoidingview.html
@@ -6,6 +6,8 @@
};
It is a component to solve the common problem of views that need to move out of the way of the virtual keyboard.
It can automatically adjust either its position or bottom padding based on the position of the keyboard.
@@ -37,6 +39,8 @@ may be non-zero in some use cases.
behavior
+
Note: Android and iOS both interact with this prop differently.
+Android may behave better when given no behavior prop at all, whereas iOS is the opposite.
Type
Required
@@ -58,7 +62,7 @@ may be non-zero in some use cases.
This is a convenience wrapper around <VirtualizedList>,
-and thus inherits its props (as well as those of ScrollView) that aren't explicitly listed
+and thus inherits its props (as well as those of <ScrollView> that aren't explicitly listed
here, along with the following caveats:
Internal state is not preserved when content scrolls out of the render window. Make sure all