Flutter Stack 幀佈局,層疊堆放

默認狀況在堆放左上角web

這裏寫圖片描述

alignment: new Alignment(0.6, 0.6), 堆放在x(寬度)*0.6 y(高度)*0.6處
這裏寫圖片描述網絡

import 'package:flutter/material.dart';

void main() {
  runApp(
    new MaterialApp(
      title: 'Demo',
      home: new Scaffold(
        appBar: new AppBar(
          title: new Text('Demo'),
        ),
        body: new Center(
          child: new Stack(//第一個子控件最下面
            alignment: new Alignment(0.6, 0.6),
            //statck
            children: <Widget>[
              new Align(
                alignment: FractionalOffset.center,
// heightFactor: 40.0,
// widthFactor: 40.0,
                child: new Image.network(//加載網絡圖片
                  'http://h.hiphotos.baidu.com/image/pic/item/21a4462309f790525fe7185100f3d7ca7acbd5e1.jpg',
                  height: 300.0,
                  width: 300.0,
                  repeat: ImageRepeat.repeat,//圖片重複方式
                ),
              ),
              new Opacity(
                opacity: 0.5,//不透明度
                child: new Container(
                  width: 300.0,
                  height: 400.0,
                  color: Colors.blue,
                ),
              ),
              new Opacity(
                opacity: 0.3,
                child: new Container(
                  width: 200.0,
                  height: 200.0,
                  color: Colors.red,
                ),
              ),
            ], ), ), ), ), ); }