Youtube_player_flutter: How to disable fullscreen ?? need help

Created on 12 Feb 2021  ·  3Comments  ·  Source: sarbagyastha/youtube_player_flutter

how to disbale full screen option without hiding controls??

bug

Most helpful comment

hello did something like this, and it hid the button

return YoutubePlayer(
    controller: _controller,
    bottomActions: [
        const SizedBox(width: 14.0),
        CurrentPosition(),
        const SizedBox(width: 8.0),
        ProgressBar(
            isExpanded: true,
        ),
        RemainingDuration(),
        const PlaybackSpeedButton(),
    ]
);

All 3 comments

Found a solution to not enable full screen mode?

Found a solution to not enable full screen mode?

no not yet

hello did something like this, and it hid the button

return YoutubePlayer(
    controller: _controller,
    bottomActions: [
        const SizedBox(width: 14.0),
        CurrentPosition(),
        const SizedBox(width: 8.0),
        ProgressBar(
            isExpanded: true,
        ),
        RemainingDuration(),
        const PlaybackSpeedButton(),
    ]
);
Was this page helpful?
0 / 5 - 0 ratings