ExpansionTile继承自ListTile,其高度固定。瓦片高度没有输入参数。
我尝试将ExpansionTile包装在具有硬编码高度的Container小部件中,但这会导致子小部件仅占用硬编码高度内的空间。目前,由于title
窗口小部件中的内容很大,我有一个“列溢出23像素的列”消息。
有没有办法改变扩展瓷砖的高度?或者是否有我可以使用的具有扩展/手风琴功能的Widget?
答案 0 :(得分:2)
我可能会复制ExpansionTile
并制作您自己的版本。使用ListTile
或Container
可以轻松调整SizedBox
的大小,但ExpansionTile
是一个重要的小部件,它看起来不像是在考虑您的用例的情况下构建的。 / p>
答案 1 :(得分:0)
您可能要尝试使用此软件包:configurable_expansion_tile
示例应用程序:
import 'package:flutter/material.dart';
import 'package:configurable_expansion_tile/configurable_expansion_tile.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Configurable Expansion Tile Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Configurable Expansion Tile Demo'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ConfigurableExpansionTile(
borderColorStart: Colors.blue,
borderColorEnd: Colors.orange,
animatedWidgetFollowingHeader: const Icon(
Icons.expand_more,
color: const Color(0xFF707070),
),
headerExpanded:
Flexible(child: Center(child: Text("A Header Changed"))),
header: Container(
color: Colors.transparent,
child: Center(child: Text("A Header"))),
headerBackgroundColorStart: Colors.grey,
expandedBackgroundColor: Colors.amber,
headerBackgroundColorEnd: Colors.teal,
children: [
Row(
children: <Widget>[Text("CHILD 1")],
),
Row(
children: <Widget>[Text("CHILD 2")],
)
],
)
],
),
),
);
}
}
它应该为您带来所需的结果。
希望有帮助,
谢谢
答案 2 :(得分:0)
这是一种解决方法::您可以使用ExpansionTile小部件的 title 呈现整个内容,而不必使用前导或尾随。您可以在标题小部件中添加填充以增加ExpansionTile的高度。