最佳答案
我想把两个图标并排放在 ListTile 的“尾部”。我尝试添加一个 Row 小部件,其中包含两个图标,但它完全搞乱了整个 ListTile 的布局,使其无法使用。有没有办法扩大分配给尾部的空间?
密码是这样的:
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Welcome to Flutter',
home: Scaffold(
appBar: AppBar(
title: Text('Welcome to Flutter'),
),
body: ListView(
children: <Widget>[
ListTile(
leading: Icon(Icons.play_arrow,),
title: Text("This is a title"),
subtitle: Text("This is subtitle"),
trailing: Row(
children: <Widget>[
Icon(Icons.flight),
Icon(Icons.flight_land)
]),
)
]
),
),
);
}
}
看起来是这样的: