diff --git a/README.md b/README.md index 48fe27be..d074e9aa 100644 --- a/README.md +++ b/README.md @@ -231,6 +231,7 @@ var styles = StyleSheet.create({ * [repeat](#repeat) * [resizeMode](#resizemode) * [selectedTextTrack](#selectedtexttrack) +* [stereoPan](#stereopan) * [volume](#volume) #### ignoreSilentSwitch @@ -337,6 +338,14 @@ If a track matching the specified Type (and Value if appropriate) is unavailable Platforms: Android ExoPlayer, iOS +#### stereoPan +The audio player’s stereo pan position. Any value between –1.0 and 1.0 is accepted. +* **-1.0** - Full left +* **0.0 (default)** - Center +* **1.0** - Full right + +Platforms: Android MediaPlayer + #### volume Adjust the volume. * **1.0 (default)** - Play at full volume @@ -345,14 +354,6 @@ Adjust the volume. Platforms: all -#### stereoPan -The audio player’s stereo pan position. Any value between –1.0 and 1.0 is accepted. -* **-1.0** - Full left -* **0.0 (default)** - Center -* **1.0** - Full right - -Platforms: Android - ### 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.