feat(android): add settings button to control video playback speed (#4211)

This commit is contained in:
Seyed Mostafa Hasani
2024-10-05 20:04:25 +03:30
committed by GitHub
parent d81e6ea31e
commit d1883a7e00
7 changed files with 55 additions and 2 deletions

View File

@@ -308,6 +308,7 @@ type ControlsStyles = Readonly<{
hideDuration?: WithDefault<boolean, false>;
hideNavigationBarOnFullScreenMode?: WithDefault<boolean, true>;
hideNotificationBarOnFullScreenMode?: WithDefault<boolean, true>;
hideSettingButton?: WithDefault<boolean, true>;
seekIncrementMS?: Int32;
liveLabel?: string;
}>;

View File

@@ -260,6 +260,7 @@ export type ControlsStyles = {
hideFullscreen?: boolean;
hideNavigationBarOnFullScreenMode?: boolean;
hideNotificationBarOnFullScreenMode?: boolean;
hideSettingButton?: boolean;
seekIncrementMS?: number;
liveLabel?: string;
};