翩翩:行小部件中的文字没有顺序。

问题描述 投票:0回答:1

代码。

Row(
  mainAxisAlignment: MainAxisAlignment.start,
  children: <Widget>[
    Column(
      children: <Widget>[
        Text(
          model.mp3Files[index].artist,
          style: Theme.of(context).textTheme.subtitle1,
        ),
        SizedBox(height: 8.0,),
        Text(
          model.mp3Files[index].album,
          style: Theme.of(context).textTheme.subtitle1,
        ),
      ],
    ),
  ],
)

如何将第一个文本放置在左边?

enter image description here

flutter row flutter-layout
1个回答
1
投票

在你的 Column

Column(
  crossAxisAlignment: CrossAxisAlignment.start, // add this
  children: [...],
)
© www.soinside.com 2019 - 2024. All rights reserved.