Currently adding SurveyKit( backgroundColor: Colors.red, ...)
does only applies color to AppBar and not the entire page and need to have decoration param like
SurveyKit( backgroundColor: Colors.red, decoration: BoxDecoration(color: Colors.red) ... )
to apply change color on entire page
Currently adding
SurveyKit( backgroundColor: Colors.red, ...)
does only applies color toAppBar
and not the entire page and need to have decoration param likeSurveyKit( backgroundColor: Colors.red, decoration: BoxDecoration(color: Colors.red) ... )
to apply change color on entire page