neena
neena

Reputation: 581

Single color for all background pages in flutter

Is there an option where we can give a single color to the background of every pages in flutter. I couldn't find one in flutter.

Upvotes: 0

Views: 71

Answers (1)

Karim Elghamry
Karim Elghamry

Reputation: 1421

MaterialApp has a theme property which you can adjust the ScaffoldBackgroundColor with:

MaterialApp(
      theme: ThemeData(
        scaffoldBackgroundColor: Colors.white, //your preferred color
      ),
    );

Upvotes: 3

Related Questions