jhomlala / betterplayer

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

[BUG]fullscreen gesture is #718

Closed zdabing closed 3 years ago

zdabing commented 3 years ago

When the video is full screen gesture is not work

jhomlala commented 3 years ago

Please create issue with issue template. We don't have time to support people who can't create issue properly.

wizebaseLLC commented 2 years ago

I am also having this issue. testing on iOS real device

  AspectRatio(
            aspectRatio: 16 / 9,
            child: BetterPlayer.network(
              //  'https://flutter.github.io/assets-for-api-docs/assets/videos/butterfly.mp4',
              programData.long_video_url!,
              betterPlayerConfiguration: const BetterPlayerConfiguration(
                placeholder: CircularProgressIndicator.adaptive(),
                aspectRatio: 16 / 9,
                fullScreenAspectRatio: 16 / 9,
                deviceOrientationsAfterFullScreen: [
                  DeviceOrientation.portraitUp
                ],
              ),
            ),