在Flutter中将图像对齐到左上方

时间:2019-03-06 21:41:51

标签: dart flutter flutter-layout

我很陌生,无法弄清楚如何对齐我的一个包含图像的子窗口小部件。到目前为止,这是我尝试过的:

@override
Widget build(BuildContext context) {
  return Scaffold(
  appBar: AppBar(
    title: Text(widget.username),
    backgroundColor: new Color(0xFF24292E),
  ),
  body: Center(
    child: Column(
      crossAxisAlignment: CrossAxisAlignment.start,
      mainAxisSize: MainAxisSize.max,
      mainAxisAlignment: MainAxisAlignment.start,
      children: <Widget>[
        Image.asset(
          'assets/profile.png', width: 100.0, height: 100.0,
        ),
      ],
    ),
  ),
);
}

但是图像停留在屏幕的中央上方。如何将其移动到相对于屏幕的左上方?谢谢。

1 个答案:

答案 0 :(得分:0)

您已将列居中,这就是其中所有内容都居中的原因。只需删除顶级Center()小部件,您的图像就会在左上方对齐。

@override
Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      title: Text(widget.username),
      backgroundColor: new Color(0xFF24292E),
    ),
    body: Column(
      crossAxisAlignment: CrossAxisAlignment.start,
      mainAxisSize: MainAxisSize.max,
      mainAxisAlignment: MainAxisAlignment.start,
      children: <Widget>[
        Image.asset(
          'assets/profile.png', width: 100.0, height: 100.0,
        ),
      ],
    ),
  );
}