首页 > 解决方案 > Flutter:当我横向播放视频时,App Bar 显示如何使用 Flutter_Youtube_player 避免这种情况

问题描述

她是我正在使用的代码,请帮助我。

返回脚手架(

    appBar: AppBar(
      centerTitle: true,
      title: Text(widget.videoItem.video.title),

    ),

    body: Container(

      child: YoutubePlayer(
        controller: _controller,
        showVideoProgressIndicator: true,

        onReady: () {
          print('Player is ready');
          _isPlayerReady = true;
        },),),);

标签: flutterdart

解决方案


推荐阅读