reduce expansionTile height in flutter
Asked Answered
N

2

5

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"

Nevile answered 9/8, 2019 at 19:32 Comment(4)
Any one know how to get it done?Nevile
Have you tried pub.dev/packages/configurable_expansion_tile It worked for meChaparro
please add it as an answer so i can mark it as the correct oneNevile
Alright man, will doChaparro
C
3

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

Chaparro answered 17/8, 2019 at 19:54 Comment(0)
H
18
ListTileTheme(
  dense: true,
  child: ExpansionTile(..),
..

how about this?

Herr answered 29/4, 2020 at 19:53 Comment(1)
Hurrah! Worked for me.Amphibolous
C
3

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

Chaparro answered 17/8, 2019 at 19:54 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.