Skip to content

Commit

Permalink
fix: expansionpanel is now working again
Browse files Browse the repository at this point in the history
  • Loading branch information
solsticedhiver committed Jan 31, 2024
1 parent da2f1aa commit f9b6511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mydrawer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class _MyRadioExpansionPanelListState extends State<MyRadioExpansionPanelList> {
child: ExpansionPanelList(
expansionCallback: (panelIndex, isExpanded) {
setState(() {
_drawerExpansionPanelListState[panelIndex] = !isExpanded;
_drawerExpansionPanelListState[panelIndex] = isExpanded;
});
},
children: children,
Expand Down

0 comments on commit f9b6511

Please sign in to comment.