我试图在一行内的多行中显示芯片和长行文本 .
I want it like this, except for the label and the aligned on the same line.
我目前的代码:
return new Column(
mainAxisSize: MainAxisSize.max,
children: <Widget>[
new Wrap(
spacing: 8.0,
runSpacing: 4.0,
direction: Axis.horizontal,
children: <Widget>[
new Tag(tagLabel: 'Chip1'),
new Text('This is a very, very long text that should wrap. The second line should be shown below the first chip!'),
new Chip(label: new Text('Chip2')),
new Chip(label: new Text('Chip3')),
new Chip(label: new Text('Chip4')),
new Chip(label: new Text('Chip5')),
new Chip(label: new Text('Chip6'))
],
)
],
);
任何的想法?