Skip to content

Commit

Permalink
fix: add missing shutterColor type (#3561)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunrajput authored Mar 5, 2024
1 parent b73baad commit ba00881
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/component/props.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ This page shows the list of available properties to configure player
| [selectedAudioTrack](#selectedaudiotrack) | Android, iOS, visionOS |
| [selectedTextTrack](#selectedtexttrack) | Android, iOS visionOS |
| [selectedVideoTrack](#selectedvideotrack) | Android |
| [shutterColor](#shutterColor) | Android |
| [shutterColor](#shuttercolor) | Android |
| [source](#source) | All |
| [subtitleStyle](#subtitlestyle) | Android |
| [textTracks](#texttracks) | Android, iOS, visionOS |
Expand Down
1 change: 1 addition & 0 deletions src/VideoNativeComponent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ export interface VideoNativeProps extends ViewProps {
reportBandwidth?: boolean; //Android
selectedVideoTrack?: SelectedVideoTrack; // android
subtitleStyle?: SubtitleStyle; // android
shutterColor?: string; // Android
trackId?: string; // Android
useTextureView?: boolean; // Android
useSecureView?: boolean; // Android
Expand Down
1 change: 1 addition & 0 deletions src/types/video.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ export interface ReactVideoProps extends ReactVideoEvents, ViewProps {
selectedTextTrack?: SelectedTrack;
selectedVideoTrack?: SelectedVideoTrack; // android
subtitleStyle?: SubtitleStyle; // android
shutterColor?: string; // Android
textTracks?: TextTracks;
testID?: string;
trackId?: string; // Android
Expand Down

0 comments on commit ba00881

Please sign in to comment.