Reorder allowsExternalPlayback alphabetically

This commit is contained in:
Hampton Maxwell 2018-06-10 10:48:32 -07:00 committed by GitHub
parent 187158be34
commit 36dffa694c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.