From 36dffa694cb9e6907f69b89b964332fcf6397fec Mon Sep 17 00:00:00 2001 From: Hampton Maxwell Date: Sun, 10 Jun 2018 10:48:32 -0700 Subject: [PATCH] Reorder allowsExternalPlayback alphabetically --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 936504fb..ee5d6d8e 100644 --- a/README.md +++ b/README.md @@ -221,6 +221,7 @@ var styles = StyleSheet.create({ ``` ### Configurable props +* [allowsExternalPlayback](#allowsexternalplayback) * [ignoreSilentSwitch](#ignoresilentswitch) * [muted](#muted) * [paused](#paused) @@ -232,7 +233,13 @@ var styles = StyleSheet.create({ * [resizeMode](#resizemode) * [selectedTextTrack](#selectedtexttrack) * [volume](#volume) -* [allowsExternalPlayback](#allowsExternalPlayback) + +#### allowsExternalPlayback +Indicates whether the player allows switching to external playback mode such as AirPlay or HDMI. +* **true (default)** - allow switching to external playback mode +* **false** - Don't allow switching to external playback mode + +Platforms: iOS #### ignoreSilentSwitch Controls the iOS silent switch behavior @@ -346,12 +353,6 @@ Adjust the volume. Platforms: all -#### allowsExternalPlayback -A Boolean value that indicates whether the player allows switching to external playback mode. -* **true (default)** - allow switching to external playback mode -* **false** - Don't allow switching to external playback mode -Platforms: iOS - ### Additional props To see the full list of available props, you can check the [propTypes](https://github.com/react-native-community/react-native-video/blob/master/Video.js#L246) of the Video.js component.