We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 198f01c commit 8080f31Copy full SHA for 8080f31
1 file changed
lib/components/accordian/gf_accordian.dart
@@ -176,9 +176,9 @@ class _GFAccordionState extends State<GFAccordion>
176
default:
177
}
178
showAccordion = !showAccordion;
179
+ if (widget.onToggleCollapsed != null) {
180
+ widget.onToggleCollapsed(showAccordion);
181
+ }
182
});
- if (widget.onToggleCollapsed != null) {
- widget.onToggleCollapsed(showAccordion);
- }
183
184
0 commit comments