flutter之Align控件

Align控件即对齐控件,能将子控件所指定方式对齐,并根据子控件的大小调整自己的大小。

对齐子控件的方式:

bottomCenter    (0.5, 1.0)    底部中心
bottomLeft    (0.0, 1.0)    左下角
bottomRight    (1.0, 1.0)    右下角
center    (0.5, 0.5)    水平垂直居中
centerLeft    (0.0, 0.5)    左边缘中心
centerRight    (1.0, 0.5)    右边缘中心
topCenter    (0.5, 0.0)    顶部中心
topLeft    (0.0, 0.0)    左上角
topRight    (1.0, 0.0)    右上角

实例代码: 

import 'package:flutter/material.dart';
class AlignDemo extends StatelessWidget{
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text("对齐定位"),
      ),
      body: new Stack(
        children: <Widget>[
          new Align(
            alignment:FractionalOffset.topLeft,
            child: new Image.asset("images/hua3.png",
              width:200.0,
              height: 200.0,
            ),
          ),
          new Align(
            alignment:FractionalOffset.bottomRight,
            child: new Image.asset("images/hua1.png",
              width: 200.0,
              height: 200.0,
            ),
          )
        ],
      ),
    );
  }
}
void main(){
  runApp(new MaterialApp(
    title: "对应对齐定位",
    home: new AlignDemo(),
  ));
}

效果: 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值