91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Flutter 拖拽排序組件 ReorderableListView

發布時間:2020-04-05 09:48:32 來源:網絡 閱讀:503 作者:mengqingdon 欄目:移動開發

Flutter 拖拽排序組件 ReorderableListView

注意:無特殊說明,Flutter版本及Dart版本如下:

  • Flutter版本: 1.12.13+hotfix.5
  • Dart版本: 2.7.0

ReorderableListView是通過長按拖動某一項到另一個位置來重新排序的列表組件。

ReorderableListView需要設置childrenonReorder屬性,children是子控件,onReorder是拖動完成后的回調,用法如下:

List<String> items = List.generate(20, (int i) => '$i');
ReorderableListView(
  children: <Widget>[
    for (String item in items)
      Container(
        key: ValueKey(item),
        height: 100,
        margin: EdgeInsets.symmetric(horizontal: 50, vertical: 10),
        decoration: BoxDecoration(
            color:
                Colors.primaries[int.parse(item) % Colors.primaries.length],
            borderRadius: BorderRadius.circular(10)),
      )
  ],
  onReorder: (int oldIndex, int newIndex) {
    if (oldIndex < newIndex) {
      newIndex -= 1;
    }
    var child = items.removeAt(oldIndex);
    items.insert(newIndex, child);
    setState(() {});
  },
)

ReorderableListView的每個子控件必須設置唯一的key,ReorderableListView沒有“懶加載”模式,需要一次構建所有的子組件,所以ReorderableListView并不適合加載大量數據的列表,它適用于有限集合且需要排序的情況,比如手機系統里面設置語言的功能,通過拖動對語言排序。

onReorder是拖動完成的回調,第一個參數是舊的數據索引,第二個參數是拖動到位置的索引,回調里面需要對數據進行排序并通過setState刷新數據。

效果如下:

Flutter 拖拽排序組件 ReorderableListView

header參數顯示在列表的頂部,用法如下:

ReorderableListView(
  header: Text(
    '一枚有態度的程序員',
    style: TextStyle(color: Colors.red,fontSize: 20),
  )
  ...
)

效果如下:

Flutter 拖拽排序組件 ReorderableListView

reverse`參數設置為true且ReorderableListView的滾動方向為垂直時,滾動條直接滑動到底部,如果是水平方向則滾動條直接滑動到右邊,默認為false,用法如下:

ReorderableListView(
  reverse: true,
  ...
)

scrollDirection`參數表示滾動到方向,默認為垂直,設置為水平方向如下:

ReorderableListView(
  scrollDirection: Axis.horizontal,
  ...
)

由于改為水平滾動,所以子控件的寬度要設置,否則會出現沒有列表。

效果如下:

Flutter 拖拽排序組件 ReorderableListView

今天的文章對大家是否有幫助?如果有,請在文章底部留言和點贊,以表示對我的支持,你們的留言、點贊和轉發關注是我持續更新的動力!

Flutter 拖拽排序組件 ReorderableListView

更多相關閱讀:

  • Flutter系列文章總覽
  • 全網最詳細的一篇Flutter 尺寸限制類容器總結
  • Flutter DataTable 看這一篇就夠了
  • Flutter Widgets 之 PageView
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

靖宇县| 新蔡县| 于都县| 西宁市| 景洪市| 黄平县| 新田县| 苍南县| 景泰县| 泾川县| 民县| 湘西| 平和县| 龙里县| 长白| 镇坪县| 交城县| 雷州市| 读书| 平湖市| 庄河市| 万载县| 信宜市| 湘乡市| 广州市| 莱阳市| 永新县| 阜宁县| 阳泉市| 行唐县| 平泉县| 思茅市| 乐平市| 海城市| 天峻县| 昭平县| 鲜城| 建始县| 马边| 嘉善县| 马龙县|