custom background color in scaffold flutter code example

Example 1: flutter scaffold background color

import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
  
    Widget build(BuildContext context) {

      return new MaterialApp(
        title: 'Testing',
        home: new Scaffold(
        //Here you can set what ever background color you need.
          backgroundColor: Colors.white,
        ),
      );
    }
}

Example 2: background color flutter

backgroundColor: Colors.white

Tags:

Dart Example