jhomlala / betterplayer

Better video player for Flutter, with multiple configuration options. Solving typical use cases!
Apache License 2.0
932 stars 1.04k forks source link

Video does not work with `ClipRect` #1339

Open mikemilla opened 1 month ago

mikemilla commented 1 month ago

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,
      ),
    );
  }