column background color flutter code example

Example 1: background color to container flutter

new Container(
  width: 100,
  height: 30,
  decoration: new BoxDecoration(
    color: Colors.green
  ),
 )

Example 2: how to give your app background colour in flutter

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        backgroundColor: Color(0xff00BCD1),
        appBar: AppBar(
          title: Text('Flutter Screen Background Color Example'),
        ),
        body: Center(child: Body()),
      ),
    );
  }
}

/// This is the stateless widget that the main application instantiates.
class Body extends StatelessWidget {
  
  Widget build(BuildContext context) {
    return Text('How Are You?');
  }
}

Tags:

Dart Example