betterplayer icon indicating copy to clipboard operation
betterplayer copied to clipboard

Video does not work with `ClipRect`

Open mikemilla opened this issue 4 months ago • 0 comments

Player doesn't support clipping it's widget to a ClipRect

BetterPlayerConfiguration betterPlayerConfiguration = BetterPlayerConfiguration(
      fit: BoxFit.cover,
);

...

Widget _buildVideoPlayer() {
    return ClipRect(
      child: BetterPlayer(
        controller: _betterPlayerController,
      ),
    );
  }

mikemilla avatar Oct 12 '24 04:10 mikemilla