skip to Main Content

I get a build error while building my flutter app

Target kernel_snapshot failed: Exception FAILURE: Build failed with an exception. Where: Script 'C:flutterpackagesflutter_toolsgradlesrcmaingroovyflutter.groovy' line: 1297 What went wrong: Execution failed for task ':app:compileFlutterBuildRelease'. Process 'command 'C:flutterbinflutter.bat'' finished with non-zero exit value 1 Try: Run with --stacktrace option to get the…

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