6

is there a way to reduce the height of the ExpansionTile header because it doesn't have a height property, after searching i found this on github for a custom color but i cannot modify it to add a height property besides it gives me errors say " drive is not defined for the class AnimationController"

Ahmed El Sayed
  • 499
  • 1
  • 8
  • 17

2 Answers2

16
ListTileTheme(
  dense: true,
  child: ExpansionTile(..),
..

how about this?

wonpyohong
  • 344
  • 4
  • 7
3

Make use of Configurable Expansion Tile from dart's dev site. Its really customizable and worked perfectly for me.

Dzeri
  • 891
  • 1
  • 8
  • 15