Flutter-swiper無限輪播插件

ps(搬運作者介紹,不喜勿噴)

1被盈、介紹

swiper詳細介紹請查看swiper插件地址鏈接.

2践樱、安裝,最后版本按插件版本為準

flutter_swiper : ^lastest_version

3,基礎實現(xiàn)方式

import 'package:flutter/material.dart';

import 'package:flutter_swiper/flutter_swiper.dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      theme: new ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: new MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => new _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text(widget.title),
      ),
    body:  new Swiper(
        itemBuilder: (BuildContext context,int index){
          return new Image.network("http://via.placeholder.com/350x150",fit: BoxFit.fill,);
        },
        itemCount: 3,
        pagination: new SwiperPagination(),
        control: new SwiperControl(),
      ),
    );
  }
}

3.1參數(shù)介紹

參數(shù) 默認值 描述
scrollDirection Axis.horizontal 滾動方向,設置為Axis.vertical如果需要垂直滾動
loop true 無限輪播模式開關(guān)
index 0 初始的時候下標位置
autoplay false 自動播放開關(guān).
onIndexChanged void onIndexChanged(int index) 當用戶手動拖拽或者自動播放引起下標改變的時候調(diào)用
onTap void onTap(int index) 當用戶點擊某個輪播的時候調(diào)用duration 300.0 動畫時間泌辫,單位是毫秒
pagination null 設置 new SwiperPagination() 展示默認分頁指示器
control null 設置 new SwiperControl() 展示默認分頁按

3.2分頁指示器

分頁指示器繼承自 SwiperPlugin,SwiperPlugin 為 Swiper 提供額外的界面.設置為new SwiperPagination() 展示默認分頁.

參數(shù) 默認值 描述
alignment Alignment.bottomCenter 如果要將分頁指示器放到其他位置叉跛,那么可以修改這個參數(shù)
margin const EdgeInsets.all(10.0) 分頁指示器與容器邊框的距離
builder SwiperPagination.dots 目前已經(jīng)定義了兩個默認的分頁指示器樣式: SwiperPagination.dots 、 SwiperPagination.fraction跋理,都可以做進一步的自定義.

如果需要定制自己的分頁指示器择克,那么可以這樣寫:

new Swiper(
    ...,
    pagination:new SwiperCustomPagination(
        builder:(BuildContext context, SwiperPluginConfig config){
            return new YourOwnPaginatipon();
        }
    )
);

3.3控制器(SwiperController)

SwiperController 用于控制 Swiper的index屬性, 停止和開始自動播放. 通過 new SwiperController() 創(chuàng)建一個SwiperController實例,并保存前普,以便將來能使用肚邢。

方法 描述
void move(int index, {bool animation: true}) 移動到指定下標,設置是否播放動畫
void next({bool animation: true}) 下一頁
void previous({bool animation: true}) 上一頁
void startAutoplay() 開始自動播放
void stopAutoplay() 停止自動播放

自動播放

參數(shù) 默認值 描述
autoplayDely 3000 自動播放延遲毫秒數(shù).
autoplayDisableOnInteraction true 當用戶拖拽的時候拭卿,是否停止自動播放.

3.4展示圖片

1.gif
2.gif
3.gif
4.gif
5.gif
swiper-example.gif

4骡湖、更多布局

4.1內(nèi)建的布局

new Swiper(
  itemBuilder: (BuildContext context, int index) {
    return new Image.network(
      "http://via.placeholder.com/288x188",
      fit: BoxFit.fill,
    );
  },
  itemCount: 10,
  viewportFraction: 0.8,
  scale: 0.9,
)
scale: 0.9.gif
new Swiper(
  itemBuilder: (BuildContext context, int index) {
    return new Image.network(
      "http://via.placeholder.com/288x188",
      fit: BoxFit.fill,
    );
  },
  itemCount: 10,
  itemWidth: 300.0,
  layout: SwiperLayout.STACK,
)
SwiperLayout.STACK.gif
new Swiper(
    itemBuilder: (BuildContext context, int index) {
      return new Image.network(
        "http://via.placeholder.com/288x188",
        fit: BoxFit.fill,
      );
    },
    itemCount: 10,
    itemWidth: 300.0,
    itemHeight: 400.0,
    layout: SwiperLayout.TINDER,
 )
SwiperLayout.TINDER.gif

構(gòu)建自己的動畫

new Swiper(
  layout: SwiperLayout.CUSTOM,
  customLayoutOption: new CustomLayoutOption(
      startIndex: -1,
      stateCount: 3
  ).addRotate([
    -45.0/180,
    0.0,
    45.0/180
  ]).addTranslate([
    new Offset(-370.0, -40.0),
    new Offset(0.0, 0.0),
    new Offset(370.0, -40.0)
  ]),
  itemWidth: 300.0,
  itemHeight: 200.0,
  itemBuilder: (context, index) {
    return new Container(
      color: Colors.grey,
      child: new Center(
        child: new Text("$index"),
      ),
    );
  },
  itemCount: 10)

CustomLayoutOption 被設計用來描述布局和動畫,很簡單的可以指定每一個元素的狀態(tài).

new CustomLayoutOption(
      startIndex: -1,  /// 開始下標
      stateCount: 3    /// 下面的數(shù)組長度 
  ).addRotate([        //  每個元素的角度
    -45.0/180,
    0.0,
    45.0/180
  ]).addTranslate([           /// 每個元素的偏移
    new Offset(-370.0, -40.0),
    new Offset(0.0, 0.0),
    new Offset(370.0, -40.0)
  ])
layout4.gif

5,代碼

new ConstrainedBox(
  child: new Swiper(
    outer:false,
    itemBuilder: (c, i) {
      return new Wrap(
        runSpacing:  6.0,
        children: [0,1,2,3,4,5,6,7,8,9].map((i){
          return new SizedBox(
            width: MediaQuery.of(context).size.width/5,
            child: new Column(
              mainAxisSize: MainAxisSize.min,
              children: <Widget>[
                new SizedBox(
                  child:  new Container(
                    child: new Image.network("https://fuss10.elemecdn.com/c/db/d20d49e5029281b9b73db1c5ec6f9jpeg.jpeg%3FimageMogr/format/webp/thumbnail/!90x90r/gravity/Center/crop/90x90"),
                  ),
                  height: MediaQuery.of(context).size.width * 0.12,
                  width: MediaQuery.of(context).size.width * 0.12,
                ),
                new Padding(padding: new EdgeInsets.only(top:6.0),child: new Text("$i"),)
              ],
            ),
          );
        }).toList(),
      );
    },
    pagination: new SwiperPagination(
      margin: new EdgeInsets.all(5.0)
    ),
    itemCount: 10,
  ),
    constraints:new BoxConstraints.loose(new Size(screenWidth, 170.0))
),
swiper-example (1).gif

這里可以找到所有的定制選項

https://github.com/jzoom/flutter_swiper/blob/master/example/lib/src/ExampleCustom.dart

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市峻厚,隨后出現(xiàn)的幾起案子响蕴,更是在濱河造成了極大的恐慌,老刑警劉巖惠桃,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件浦夷,死亡現(xiàn)場離奇詭異,居然都是意外死亡辜王,警方通過查閱死者的電腦和手機劈狐,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來呐馆,“玉大人肥缔,你說我怎么就攤上這事⌒诶矗” “怎么了辫继?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長俗慈。 經(jīng)常有香客問我姑宽,道長,這世上最難降的妖魔是什么闺阱? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任炮车,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘瘦穆。我一直安慰自己纪隙,他們只是感情好,可當我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布扛或。 她就那樣靜靜地躺著绵咱,像睡著了一般。 火紅的嫁衣襯著肌膚如雪熙兔。 梳的紋絲不亂的頭發(fā)上悲伶,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天,我揣著相機與錄音住涉,去河邊找鬼麸锉。 笑死,一個胖子當著我的面吹牛舆声,可吹牛的內(nèi)容都是我干的花沉。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼媳握,長吁一口氣:“原來是場噩夢啊……” “哼碱屁!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起蛾找,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤娩脾,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后腋粥,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體晦雨,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年隘冲,在試婚紗的時候發(fā)現(xiàn)自己被綠了闹瞧。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡展辞,死狀恐怖奥邮,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情罗珍,我是刑警寧澤洽腺,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站覆旱,受9級特大地震影響蘸朋,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜扣唱,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一藕坯、第九天 我趴在偏房一處隱蔽的房頂上張望团南。 院中可真熱鬧,春花似錦炼彪、人聲如沸吐根。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽拷橘。三九已至,卻和暖如春喜爷,著一層夾襖步出監(jiān)牢的瞬間冗疮,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工贞奋, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留赌厅,地道東北人穷绵。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓轿塔,卻偏偏與公主長得像,于是被迫代替她去往敵國和親仲墨。 傳聞我的和親對象是個殘疾皇子勾缭,可洞房花燭夜當晚...
    茶點故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容

  • 明天交完作業(yè),好好規(guī)劃生活目养,讀書讀書再讀書俩由。
    林妖妖的盛夏光年閱讀 139評論 2 0
  • 時過境遷,還是會淪陷癌蚁,在有你也有我的日子里幻梯。 仿佛那年的記憶,早己高高的壘起了一座圍城努释,城里的月光...
    星語_24cc閱讀 183評論 0 0
  • 2018-7-29 頁面重新排版設計 增加英文標識 2018-7-26 加入待驗證計數(shù)功能(明確搜索的進程) 大小...
    Kolibre_閱讀 326評論 0 0