1

容器高度设置为固定 40,但是一旦我在 AppBar() 中使用该小部件,它就会占用所有可能的高度。这是我的自定义小部件的代码,它具有容器的固定高度,

class LPBorderButtonWithIcon extends StatelessWidget {
  final GestureTapCallback onPressed;
  final String text;
  final String iconAsset;
  final Color textColor;

  LPBorderButtonWithIcon(
      {@required this.onPressed,
      @required this.text,
      @required this.textColor,
      @required this.iconAsset});

  @override
  Widget build(BuildContext context) {
    return GestureDetector(
        onTap: onPressed,
        child: Container(
          height: 40,
          decoration: BoxDecoration(
              borderRadius: BorderRadius.circular(25),
              border: Border.all(color: Color(0XFFd8dce1))),
          child: Row(
            children: [
              WidthSizedBox(15),
              Image.asset(
                iconAsset,
                height: 14,
                width: 14,
              ),
              WidthSizedBox(5),
              Text(text,
                  style: TextStyle(
                      color: textColor,
                      fontSize: 12,
                      fontFamily: "GilroyMedium")),
              WidthSizedBox(15),
            ],
          ),
        ));
  }
}

在这里我LPBorderButtonWithIcon()在这个屏幕上使用,

class CreateRulesScreen extends StatefulWidget {
  @override
  _CreateRulesScreenState createState() => _CreateRulesScreenState();
}

class _CreateRulesScreenState extends State<CreateRulesScreen> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        brightness: Brightness.light,
        backgroundColor: Colors.white,
        elevation: 1,
        centerTitle: false,
        titleSpacing: 0.0,
        leading: BackButton(
          color: LPColor.primary,
          onPressed: () {
            Navigator.of(context).pop();
          },
        ),
        title: Text(
          "Create Rule",
          style: LPStyle.titleStyle,
        ),
        actions: [
          Container(
            margin: EdgeInsets.only(top: 12, bottom: 12, right: 16),
            child: LPBorderButtonWithIcon(
              onPressed: null,
              text: "Create",
              textColor: Color(0XFF508ff4),
              iconAsset: "images/ic_publish.png",
            ),
          )
        ],
      ),

    );
  }
}

下面是该自定义容器占据所有可能高度的结果。请让我知道如何为我的自定义小部件设置固定高度。

在此处输入图像描述

4

2 回答 2

4

将你的 Container 放在一个 Align 中,Aling 会强制容器只占据它需要的空间。

Align(
   child: Container(
   height: 20,
   width: 30,
   color: Colors.white,
  ),
)
于 2020-12-09T18:39:25.187 回答
0

父小部件占用可用于绘制小部件的整个空间,这Container是父小部件,它占用任何可用空间,因此要为 提供高度Container,需要将其放置在任何分配小部件 x,y 位置的小部件内让它画画。

Container(
    height: 40, // Its not going to apply height as it's parent widget
)

因此,要计算出上述代码,您必须将 Container 与任何其他小部件对齐,例如 Center、Align 等。

例如:

Scaffold(
  body: Container(
    height: 600,
    color: Colors.red,
    child: Container(
      height: 200,
      color: Colors.yellow,
    ),
  ),
);

上面的示例子容器不会在 200 高度绘制黄色,它将占用整个 600 高度空间。

输出:

在此处输入图像描述

为了解决这个问题,我们为孩子分配了一些小部件,Container以便它可以获取 x、y 位置来开始绘制子小部件。这里Center使用了小部件。

例如:

Scaffold(
      body: Container(
        height: 600,
        color: Colors.red,
        child: Center(
          child: Container(
            height: 200,
            color: Colors.yellow,
          ),
        ),
      ),
    );

输出:

在此处输入图像描述

一些限制:

  • 小部件只能在其父级赋予它的约束范围内决定自己的大小。这意味着一个小部件通常不能有它想要的任何大小。

  • 小部件不知道也不决定它自己在屏幕中的位置,因为决定小部件位置的是小部件的父级。

  • 由于父级的大小和位置反过来也取决于它自己的父级,因此如果不考虑整个树,就不可能精确地定义任何小部件的大小和位置。

  • 如果孩子想要与其父母不同的尺寸,而父母没有足够的信息来对齐它,那么孩子的尺寸可能会被忽略。在定义对齐时要具体。

参考链接: https ://flutter.dev/docs/development/ui/layout/constraints

于 2020-12-10T18:04:29.640 回答