短視訊平臺搭建,實現banner自動滑動展示效果

zhibo系統開發發表於2022-02-07

短視訊平臺搭建,實現banner自動滑動展示效果的相關程式碼

@override
  Widget build(BuildContext _buildContext) {
    int banLen = _banner.length;
    double width = ViewUtils.getScreenWidth(_buildContext);
    double curWidth = width * 0.92;
    double curHeight = curWidth * 187 / 670;
    return (banLen > 0)
        ? Container(
            margin: EdgeInsets.only(top: ViewUtils.currentHeight(38.0)),
            width: width,
            height: curHeight,
            child: Column(
              children: <Widget>[
                Expanded(
                  flex: 1,
                  child: Swiper(
                    containerHeight: ViewUtils.currentHeight(100.0),
                    controller: SwiperController(),
                    itemBuilder: (BuildContext context, int index) {
                      return _itemBuilder(index,curWidth,curHeight);
                    },
                    loop: true,
                    duration: 300,
                    autoplay: true,
                    scrollDirection: Axis.horizontal,
                    itemCount: banLen,
                    viewportFraction: 0.92,
                    // 當前視窗展示比例 小於1可見上一個和下一個視窗
                    scale: 0.96, // 兩張圖片之間的間隔
                  ),
                ),
              ],
            ),
          )
        : Container();
  }

以上就是 短視訊平臺搭建,實現banner自動滑動展示效果的相關程式碼, 更多內容歡迎關注之後的文章

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2854749/,如需轉載,請註明出處,否則將追究法律責任。

相關文章