Currently, when entering fullscreen mode, the system forces all native controls to be visible
Could we consider adding a new prop, such as
fullscreenControls
, to enable fine-grained control over which native controls are visible in fullscreen mode?
fullscreenControls?: {
playPause?: boolean;
progress?: boolean;
volume?: boolean;
fullscreenToggle?: boolean; // Keep this always visible
timecodes?: boolean;
// ... others
}