When increasing/shrinking growth tile, the underside overflow will seem and disappear with out the display having any measurement subject.
take a look at this quick GIF:
https://drive.google.com/file/d/1xg7hH4zK_aIT04VjQPkRyJ789Lm728R4/view?usp=share_link
that’s the code I’m utilizing:
Card(
elevation: 0,
margin: EdgeInsets.symmetric(horizontal: 3),
borderOnForeground: false,
form: RoundedRectangleBorder(
borderRadius: BorderRadius.round(10.0),
),
shade: kBgLightColor,
little one: Padding(
padding: EdgeInsets.solely(left: 6.0, proper: 6.0, backside: 12.0),
little one: ExpansionTile(
onExpansionChanged: (worth) {
setState(() {
isExpansionTileExpanded = worth;
});
},
main: Icon(Icons.filter_list),
tilePadding: EdgeInsets.all(5),
backgroundColor: kBgLightColor,
title: Textual content('Filters'),
kids: <Widget>[
CustomToggleButton(
toggleButtonOption: ToggleButtonOptions.teamOptions,
handler: toggleButtonHandler,
selectedItems: selectedTeamOption,
width: SizeConfig.screenWidth * 0.8,
items: teams,
),
],
),
),
);
any assistance is appreciated.