扑击与 dart :带视频的旋转木马

gab6jxml  于 2023-04-27  发布在  其他
关注(0)|答案(1)|浏览(68)

扑击与 dart :如何在Carousel Widget中堆叠多个视频?
我试图在Carousel Widget中堆叠多个视频,但我只得到一个(1)视频,因为我只是在VideoPlayerController.network.()中提供一个视频链接。是否可以使用字符串的ArrayList或有任何最好和最简单的方法来做到这一点?

Future<void> initializePlayer() async {

    videoPlayerController =    VideoPlayerController.network('http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/WhatCarCanYouGetForAGrand.mp4');
    await Future.wait([videoPlayerController.initialize()]);
    chewieController=ChewieController(
      videoPlayerController: videoPlayerController,
      autoPlay: true,
      looping: true,
      materialProgressColors: 
      ChewieProgressColors(
        playedColor: Colors.red,
        handleColor: Colors.white,
        backgroundColor: Colors.white,
        bufferedColor: Colors.grey
      ),
      placeholder: Container(color: Colors.black),
      autoInitialize: true,
    );
    update();
  }
gtlvzcf8

gtlvzcf81#

是的。使用Listview小部件并在链接中实现以下代码
Carousel in flutter

相关问题