skip to Main Content

Flutter – Another exception was thrown: Duplicate GlobalKey detected in widget tree – StatefulShellRoute

I tried to add route transition animation with AnimatedSwitcher to StatefulShellRoute.indexedStack but got this error: flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ flutter: The following assertion was thrown while finalizing the widget tree: flutter: Duplicate GlobalKey detected in widget…

VIEW QUESTION

Flutter: The values in a const list literal must be constants. Try removing the keyword 'const' from the list literal

Here is the Widget that is getting the error: The values in a const list literal must be constants. Try removing the keyword 'const' from the list literal. ResponsiveCenter( padding: EdgeInsets.symmetric( horizontal: ResponsiveCenterEdgeInsets.horizontal, vertical: ResponsiveCenterEdgeInsets.vertical), child: PrimaryButton( text: 'Weight', isLoading:…

VIEW QUESTION
Back To Top
Search