flutter系列之:使用SliverList和SliverGird

flydean發表於2023-02-13

簡介

在上一篇文章我們講解SliverAppBar的時候有提到過,Sliver的元件一般都用在CustomScrollView中。除了SliverAppBar之外,我們還可以為CustomScrollView新增List或者Grid來實現更加複雜的組合效果。

今天要向大家介紹的就是SliverList和SliverGird。

SliverList和SliverGird詳解

從名字就可以看出SliverList和SliverGird分別是List和Grid的一種,他們和List與Grid最大的區別在於,他們可以控制子widget在main axis和cross axis之間的間隔,並且可以透過Extent屬性來控制子widget的大小,非常的強大。

我們先來看下這兩個元件的定義和建構函式:

class SliverList extends SliverMultiBoxAdaptorWidget {
  /// Creates a sliver that places box children in a linear array.
  const SliverList({
    Key? key,
    required SliverChildDelegate delegate,
  }) : super(key: key, delegate: delegate);

SliverList繼承自SliverMultiBoxAdaptorWidget,它的建構函式比較簡單,需要傳入一個SliverChildDelegate的引數,這裡的SliverChildDelegate使用的是delegate的方法來建立SliverList的子元件。

SliverChildDelegate是一個抽象類,它有兩個實現類,分別是SliverChildBuilderDelegate和SliverChildListDelegate。

其中SliverChildBuilderDelegate是用的builder模式來生成子widget,在上一篇文章中,我們構建SliverList就是使用的這個builder類。

SliverChildBuilderDelegate使用builder來生成子Widget,而SliverChildListDelegate需要傳入一個childList來完成構造,也就是說SliverChildListDelegate需要一個確切的childList,而不是用builder來構建。

要注意的是SliverList並不能指定子widget的extent大小,如果你想指定List中的子widget的extent大小的話,那麼可以使用SliverFixedExtentList:

class SliverFixedExtentList extends SliverMultiBoxAdaptorWidget {
  const SliverFixedExtentList({
    Key? key,
    required SliverChildDelegate delegate,
    required this.itemExtent,
  }) : super(key: key, delegate: delegate);

可以看到SliverFixedExtentList和SliverList相比,多了一個itemExtent引數,用來控制子widget在main axis上的大小。

然後我們再來看一下SliverGird:

class SliverGrid extends SliverMultiBoxAdaptorWidget {
  /// Creates a sliver that places multiple box children in a two dimensional
  /// arrangement.
  const SliverGrid({
    Key? key,
    required SliverChildDelegate delegate,
    required this.gridDelegate,
  }) : super(key: key, delegate: delegate);

SliverGrid也是繼承自SliverMultiBoxAdaptorWidget,和SliverList一樣,它也有一個SliverChildDelegate的引數,另外它還多了一個gridDelegate的引數用來控制gird的佈局。

這裡的gridDelegate是一個SliverGridDelegate型別的引數,用來控制children的size和position。

SliverGridDelegate也是一個抽象類,它有兩個實現類,分別是SliverGridDelegateWithMaxCrossAxisExtent和SliverGridDelegateWithFixedCrossAxisCount,這兩個實現類的區別就在於MaxCrossAxisExtent和FixedCrossAxisCount的區別。

怎麼理解MaxCrossAxisExtent呢?比如說這個Grid是豎向的,然後Gird的寬度是500.0,如果MaxCrossAxisExtent=100,那麼delegate將會建立5個column,每個column的寬度是100。

crossAxisCount則是直接指定cross axis的child個數有多少。

SliverList和SliverGird的使用

有了上面介紹的SliverList和SliverGird的建構函式,接下來我們具體來看下如何在專案中使用SliverList和SliverGird。

預設情況下SliverList和SliverGird是需要和CustomScrollView一起使用的,所以我們先建立一個CustomScrollView,在它的slivers屬性中,放入一個SliverAppBar元件:

CustomScrollView(
      slivers: <Widget>[
        const SliverAppBar(
          pinned: true,
          snap: false,
          floating: false,
          expandedHeight: 200.0,
          flexibleSpace: FlexibleSpaceBar(
            title: Text('SliverList and SliverGrid'),
          ),
        ),
      ],
    );

SliverAppBar只是一個AppBar,執行可以得到下面的介面:

我們還需要為它繼續新增其他的slivers元件。

首先給他新增一個SliverGrid:

SliverGrid(
          gridDelegate: const SliverGridDelegateWithMaxCrossAxisExtent(
            maxCrossAxisExtent: 200.0,
            mainAxisSpacing: 20.0,
            crossAxisSpacing: 50.0,
            childAspectRatio: 4.0,
          ),
          delegate: SliverChildBuilderDelegate(
                (BuildContext context, int index) {
              return Container(
                alignment: Alignment.center,
                color: Colors.green[100 * (index % 9)],
                child: Text('grid item $index'),
              );
            },
            childCount: 20,
          ),
        ),

這裡我們設定了gridDelegate屬性,並且自定義了SliverChildBuilderDelegate,用來生成20個Container。

執行得到的介面如下:

然後為其新增SliverList:

SliverList(
          delegate: SliverChildBuilderDelegate(
                (BuildContext context, int index) {
              return Container(
                color: index.isOdd ? Colors.white : Colors.green,
                height: 50.0,
                child: Center(
                  child: ListTile(
                    title: Text(
                      '100' + index.toString(),
                      style: const TextStyle(fontWeight: FontWeight.w500),
                    ),
                    leading: Icon(
                      Icons.account_box,
                      color: Colors.green[100 * (index % 9)],
                    ),
                  ),
                ),
              );
            },
            childCount: 15,
          ),
        ),

因為SliverList只需要傳入一個delegate引數,這裡我們生成了15個child元件。生成的介面如下:

因為SliverList不能控制List中子widget的extent,所以我們再新增一個SliverFixedExtentList看看效果:

SliverFixedExtentList(
          itemExtent: 100.0,
          delegate: SliverChildBuilderDelegate(
                (BuildContext context, int index) {
              return Container(
                color: index.isOdd ? Colors.white : Colors.green,
                height: 50.0,
                child: Center(
                  child: ListTile(
                    title: Text(
                      '200' + index.toString(),
                      style: const TextStyle(fontWeight: FontWeight.w500),
                    ),
                    leading: Icon(
                      Icons.account_box,
                      color: Colors.green[100 * (index % 9)],
                    ),
                  ),
                ),
              );
            },
            childCount: 15,
          ),

SliverFixedExtentList和SliverList相比多了一個itemExtent屬性,這裡我們將其設定為100,執行可以得到下面的介面:

可以看到List中的子Widget高度發生了變化。

總結

在CustomScrollView中使用SliverList和SliverGird,可以實現靈活的呈現效果。

本文的例子:https://github.com/ddean2009/learn-flutter.git

相關文章