flutter-expandable icon indicating copy to clipboard operation
flutter-expandable copied to clipboard

How to change ExpandablePanel header on expand collapse?

Open mackmilan opened this issue 4 years ago • 1 comments

Is there a way to change the ExpandablePanel header on expand, collapse. tnx.

mackmilan avatar Oct 05 '20 21:10 mackmilan

If your header must change you don't need to use a header :) Add to the collapsed property your current header and to the expanded property the changed one.

Like this:

ExpandablePanel(
  collapsed: Column(
	children: <Widget>[
	  currentHeader(context),
	  currentCollapsed(context)
	],
  ),
  expanded: Column(
	children: <Widget>[
	  changedHeader(context),
	  currentExpanded(context)
	],
  ),
)

fbognini avatar Nov 07 '20 17:11 fbognini