Flutter——最详细的Container(容器)使用教程

Container(容器)

属性作用
child配置容器内部的布局
padding设置容器内部的距离
alignment设置容器内容的对齐方式
color设置容器背景颜色
margin设置容器外部的距离
decoration配置容器的外部的样式
constraints配置容器的外部的约束,最大小宽、最大小高度
width设置容器的宽
height设置容器的高
  • 创建一个指定宽高的容器
import 'package:flutter/material.dart';
class CustomContainer extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      alignment: Alignment.topLeft,
      width: 200,
      height: 200,
      color: Colors.red,
    );
  }
}

在这里插入图片描述

  • 容器里面放一个子组件
import 'package:flutter/material.dart';
class ContainerWithChild extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      alignment: Alignment.topLeft,
      padding: EdgeInsets.all(20),
      margin: EdgeInsets.all(10),
      width: 200,
      height: 200,
      color: Colors.grey,
      child: Icon(Icons.android),
    );
  }
}

在这里插入图片描述

  • 子组件容器底部对齐
import 'package:flutter/material.dart';
class ContainerAlignment extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      alignment: Alignment.bottomRight,
      width: 200,
      height: 200,
      color: Colors.grey,
      child: Icon(
        Icons.android,
        color: Colors.green,
      ),
    );
  }
}

在这里插入图片描述

  • 添加一个装饰容器的布局
    需要注意的是,当装饰器里面设置了Color背景颜色,则Container的Color属性不能使用,二者只取其一
import 'package:flutter/material.dart';
class ContainerDecoration extends StatelessWidget {

  final List<int> rainbow = [
    0xffff0000,
    0xffFF7F00,
    0xffFFFF00,
    0xff00FF00,
    0xff00FFFF,
    0xff0000FF,
    0xff8B00FF
  ];
 final List<double> stops = [0.0, 1 / 6, 2 / 6, 3 / 6, 4 / 6, 5 / 6, 1.0];
  @override
  Widget build(BuildContext context) {

    return Container(//容器
      alignment: Alignment.center,
      width: 200,
      height: 200,
      margin: EdgeInsets.all(20),
      padding: EdgeInsets.all(20),
      decoration: BoxDecoration(//添加渐变色
          gradient: LinearGradient(
              stops: stops,
              colors: rainbow.map((e) => Color(e)).toList()),
          borderRadius: BorderRadius.only(//添加圆角
              topLeft: Radius.circular(50),
              bottomRight: Radius.circular(50)),
          boxShadow: [
            BoxShadow(
                color: Colors.grey,
                offset: Offset(1, 1),
                blurRadius: 10,
                spreadRadius: 1),
          ]),
      child: Text(
        "Container",
        style: TextStyle(fontSize: 20),
      ),
    );
  }
}

在这里插入图片描述

  • 约束宽高的布局
import 'package:flutter/material.dart';
class ContainerConstraints extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container(
      //容器
      color: Colors.blue,
      width: 200,
      height: 200,
      constraints: BoxConstraints(
          minWidth: 100, maxWidth: 150,
          minHeight: 20, maxHeight: 100),
    );
  }
}

在这里插入图片描述

  • 1
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

怀君

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值