Youtube_player_flutter: フルスクリーンを無効にする方法?? 助けが必要

作成日 2021年02月12日  ·  3コメント  ·  ソース: sarbagyastha/youtube_player_flutter

コントロールを非表示にせずにフルスクリーンオプションを無効にする方法は??

bug

最も参考になるコメント

こんにちは、このようなことをしました、そしてそれはボタンを隠しました

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

全てのコメント3件

フルスクリーンモードを有効にしないための解決策を見つけましたか?

フルスクリーンモードを有効にしないための解決策を見つけましたか?

いいえ、まだです

こんにちは、このようなことをしました、そしてそれはボタンを隠しました

return YoutubePlayer(
    controller: _controller,
    bottomActions: [
        const SizedBox(width: 14.0),
        CurrentPosition(),
        const SizedBox(width: 8.0),
        ProgressBar(
            isExpanded: true,
        ),
        RemainingDuration(),
        const PlaybackSpeedButton(),
    ]
);
このページは役に立ちましたか?
0 / 5 - 0 評価