chewie icon indicating copy to clipboard operation
chewie copied to clipboard

Option to remove the overlay colour during hover but keep the controls

Open Martin-QPT opened this issue 1 year ago • 1 comments

In Flutter Web the mouse over overlay stays for 3 seconds and is a black54. I'd like to see an ability to remove it and just show the controls on hover. Currently the only way to do this is to wrap the control in a Theme that has the platform set to iOS:

final themeData = Theme.of(context);
    return _chewieController != null && _chewieController!.videoPlayerController.value.isInitialized
        ? Theme(
            data: themeData.copyWith(platform: TargetPlatform.iOS),
            child: Chewie(
              controller: _chewieController!,
            ),
          )
        : const Center(
            child: CircularProgressIndicator(),
          );
  }

Martin-QPT avatar Oct 09 '24 04:10 Martin-QPT

Bumping this one ^

We are actually using much lower version of the chewie, because of this behaviour

rafalplonka avatar Jan 10 '25 10:01 rafalplonka