层叠布局 Stack、Positioned

2021-04-30  本文已影响0人  转移到CSDN名字丹丹的小跟班
介绍

层叠布局和Web中的绝对定位、Android中的Frame布局是相似的,子组件可以根据距父容器四个角的位置来确定自身的位置。绝对定位允许子组件堆叠起来(按照代码中声明的顺序)。Flutter中使用Stack和Positioned这两个组件来配合实现绝对定位。Stack允许子组件堆叠,而Positioned用于根据Stack的四个角来确定子组件的位置。

先简单使用下Stack

import 'package:flutter/material.dart';

main(List<String> args) {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "demo",
      home: Scaffold(
        appBar: AppBar(title: Text("bar")),
        body: HomeContent(),
      ),
    );    
  }
}

class HomeContent extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(child: Stack(
      children: [
        Container(
          height: 300,
          width: 300,
          color: Colors.blue[200],
        ),
        Text("一段文字")
      ],
    ));    
  }
}

可以发现,正常情况下,当Text和Container组件并排时,文字会出现在盒子的后面,但是使用了stack后,文字与盒子出现在同一区域(其实是文字在盒子上面)。


image.png
参数列表
Stack({
  this.alignment = AlignmentDirectional.topStart,
  this.textDirection,
  this.fit = StackFit.loose,
  this.overflow = Overflow.clip,
  List<Widget> children = const <Widget>[],
})
Positioned
const Positioned({
  Key key,
  this.left, 
  this.top,
  this.right,
  this.bottom,
  this.width,
  this.height,
  @required Widget child,
})

left、top 、right、 bottom分别代表离Stack左、上、右、底四边的距离。width和height用于指定需要定位元素的宽度和高度。注意,Positioned的width、height 和其它地方的意义稍微有点区别,此处用于配合left、top 、right、 bottom来定位组件,举个例子,在水平方向时,你只能指定left、right、width三个属性中的两个,如指定left和width后,right会自动算出(left+width),如果同时指定三个属性则会报错,垂直方向同理。

import 'package:flutter/material.dart';

main(List<String> args) {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "demo",
      home: Scaffold(
        appBar: AppBar(title: Text("bar")),
        body: HomeContent(),
      ),
    );    
  }
}

class HomeContent extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(child: Container(
      width: 300,
      height: 300,
      color: Colors.blue[200],
      child: Stack(
        children: <Widget>[
          Positioned(
            left: 0,
            top: 0,
            child: Icon(Icons.home),
          ),
          Positioned(
            right: 0,
            bottom: 0,
            child: Icon(Icons.home),
          ),
          Positioned(
            left: 150,
            top: 150,
            child: Icon(Icons.home),
          )
        ],
      ),
    ));    
  }
}
image.png

注意要考虑元素自身的大小

Align

参数列表

Align({
  Key key,
  this.alignment = Alignment.center,
  this.widthFactor,
  this.heightFactor,
  Widget child,
})
import 'package:flutter/material.dart';

main(List<String> args) {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "demo",
      home: Scaffold(
        appBar: AppBar(title: Text("bar")),
        body: HomeContent(),
      ),
    );    
  }
}

class HomeContent extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(child: Container(
      width: 300,
      height: 300,
      color: Colors.blue[200],
      child: Stack(
        children: <Widget>[
          Align(
            alignment: Alignment(1, 1),
            child: Icon(Icons.home),
          ),
          Align(
            alignment: Alignment(0, 0),
            child: Icon(Icons.home),
          ),
          Align(
            alignment: Alignment(-1, -1),
            child: Icon(Icons.home),
          )
        ],
      ),
    ));    
  }
}
image.png
上一篇下一篇

猜你喜欢

热点阅读