Widget _buildTopBarWidget()

in lib/aliplayer_widget.dart [215:232]


  Widget _buildTopBarWidget() {
    return Positioned(
      top: 0,
      left: 0,
      right: 0,
      child: AliPlayerTopBarWidget(
        animationManager: _animationManager,
        title: _playController._widgetData?.videoTitle ?? "",
        onBackPressed: _handleBackPress,
        onSettingsPressed: _toggleSettingMenuPanel,
        // TODO keria; download feature to be implemented
        isDownload: false,
        onDownloadPressed: _isSceneLive() ? null : _onDownloadPressed,
        onSnapshotPressed: _isSceneLive() ? null : _onSnapshotPressed,
        onPIPPressed: _isSceneLive() ? null : _onPIPPressed,
      ),
    );
  }