真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Flutter疊加組件Stack的使用方法

注意:無特殊說明,F(xiàn)lutter版本及Dart版本如下:Flutter版本: 1.12.13+hotfix.5Dart版本: 2.7.0

創(chuàng)新互聯(lián)建站專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)、青田網(wǎng)絡(luò)推廣、小程序開發(fā)、青田網(wǎng)絡(luò)營銷、青田企業(yè)策劃、青田品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)建站為所有大學生創(chuàng)業(yè)者提供青田建站搭建服務(wù),24小時服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com

Stack

Stack組件可以將子組件疊加顯示,根據(jù)子組件的順利依次向上疊加,用法如下:

Stack(
  children: [
    Container(
      height: 200,
      width: 200,
      color: Colors.red,
    ),
    Container(
      height: 170,
      width: 170,
      color: Colors.blue,
    ),
    Container(
      height: 140,
      width: 140,
      color: Colors.yellow,
    )
  ],
)

效果如下:

Flutter疊加組件Stack的使用方法

Stack未定位的子組件大小由fit參數(shù)決定,默認值是StackFit.loose,表示子組件自己決定,StackFit.expand表示盡可能的大,用法如下:

Stack(
  fit: StackFit.expand,
  ...
)

Stack未定位的子組件的默認左上角對齊,通過alignment參數(shù)控制,用法如下:

Stack(
  alignment: Alignment.center,
  ...
)

效果如下:

Flutter疊加組件Stack的使用方法

有沒有注意到fitalignment參數(shù)控制的都是未定位的子組件,那什么樣的組件叫做定位的子組件?使用Positioned包裹的子組件就是定位的子組件,用法如下:

Stack(
  alignment: Alignment.center,
  children: [
    Container(
      height: 200,
      width: 200,
      color: Colors.red,
    ),
    Positioned(
      left: 10,
      right: 10,
      bottom: 10,
      top: 10,
      child: Container(
        color: Colors.green,
      ),
    )
  ],
)

Positioned組件可以指定距Stack各邊的距離,效果如下:

Flutter疊加組件Stack的使用方法

如果子組件超過Stack邊界由overflow控制,默認是裁剪,下面設(shè)置總是顯示的用法:

Stack(
  overflow: Overflow.visible,
  children: [
    Container(
      height: 200,
      width: 200,
      color: Colors.red,
    ),
    Positioned(
      left: 100,
      top: 100,
      height: 150,
      width: 150,
      child: Container(
        color: Colors.green,
      ),
    )
  ],
)

效果如下:

Flutter疊加組件Stack的使用方法

IndexedStack

IndexedStack是Stack的子類,Stack是將所有的子組件疊加顯示,而IndexedStack只顯示指定的子組件,用法如下:

IndexedStack(
      index: _index,
      children: [
        Center(
          child: Container(
            height: 300,
            width: 300,
            color: Colors.red,
            alignment: Alignment.center,
            child: Icon(
              Icons.fastfood,
              size: 60,
              color: Colors.blue,
            ),
          ),
        ),
        Center(
          child: Container(
            height: 300,
            width: 300,
            color: Colors.green,
            alignment: Alignment.center,
            child: Icon(
              Icons.cake,
              size: 60,
              color: Colors.blue,
            ),
          ),
        ),
        Center(
          child: Container(
            height: 300,
            width: 300,
            color: Colors.yellow,
            alignment: Alignment.center,
            child: Icon(
              Icons.local_cafe,
              size: 60,
              color: Colors.blue,
            ),
          ),
        ),
      ],
    )

通過點擊按鈕更新_index值,代碼如下:

Row(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            IconButton(
              icon: Icon(Icons.fastfood),
              onPressed: () {
                setState(() {
                  _index = 0;
                });
              },
            ),
            IconButton(
              icon: Icon(Icons.cake),
              onPressed: () {
                setState(() {
                  _index = 1;
                });
              },
            ),
            IconButton(
              icon: Icon(Icons.local_cafe),
              onPressed: () {
                setState(() {
                  _index = 2;
                });
              },
            ),
          ],
        )

效果如下:

Flutter疊加組件Stack的使用方法

Positioned

Positioned用于定位Stack子組件,Positioned必須是Stack的子組件,基本用法如下:

Stack(
  children: [
    Positioned(
      left: 10,
      right: 10,
      top: 10,
      bottom: 10,
      child: Container(color: Colors.red),
    ),
  ],
)

效果如下:

Flutter疊加組件Stack的使用方法

相關(guān)說明:

  • 提供top、bottom、left、right四種定位屬性,分別表示距離上下左右的距離。
  • 只能用于Stack組件中。
  • left、rightwidth3個參數(shù)只能設(shè)置其中2個,因為設(shè)置了其中2個,第三個已經(jīng)確定了,同理top、bottomheight也只能設(shè)置其中2個。

Positioned提供便捷的構(gòu)建方式,比如Positioned.fromRect、Positioned.fill等,這些便捷的構(gòu)建方式萬變不離其宗,只不過換了一種方式設(shè)置top、bottom、leftright四種定位屬性。


標題名稱:Flutter疊加組件Stack的使用方法
文章URL:http://weahome.cn/article/pscics.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部