I am new to flutter and I want to make a list of cards like this.
I tried to Understand the original Project but I am not able to figure out.
I just want to make an expandable card without the background gif/video effect
Thanks...
I am new to flutter and I want to make a list of cards like this.
I tried to Understand the original Project but I am not able to figure out.
I just want to make an expandable card without the background gif/video effect
Thanks...
Here is an example of what I said in the comments on your question:
It contains a Card with a Container which contains a height, the height is updated when the Card is tapped because of the InkWell's onTap event, the onTap calls the setState() function to update the widgets, with the new height of the Card.
This isn't tested yet...
If you don't want to use
ExpansionTile
then one of the easiest way of doing it is followingUse this widget and pass the collapsed child and expanded child and change the value of
isExpanded
on click of button or text.Now change the value of
isExpanded
on click of icon/texttry to add an
ExpansionTile
inside aCard
, this will expand theCard
when you expand theExpansionTile