你能改变Flutter中ExpansionTile的高度吗?

时间:2017-09-26 17:37:32

标签: widget accordion flutter

ExpansionTile继承自ListTile,其高度固定。瓦片高度没有输入参数。

我尝试将ExpansionTile包装在具有硬编码高度的Container小部件中,但这会导致子小部件仅占用硬编码高度内的空间。目前,由于title窗口小部件中的内容很大,我有一个“列溢出23像素的列”消息。

有没有办法改变扩展瓷砖的高度?或者是否有我可以使用的具有扩展/手风琴功能的Widget?

3 个答案:

答案 0 :(得分:2)

我可能会复制ExpansionTile并制作您自己的版本。使用ListTileContainer可以轻松调整SizedBox的大小,但ExpansionTile是一个重要的小部件,它看起来不像是在考虑您的用例的情况下构建的。 / p>

答案 1 :(得分:0)

您可能要尝试使用此软件包:configurable_expansion_tile

enter image description here

示例应用程序:

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的高度。