How to change Flutter App Bar Background Color?

PHOTO EMBED

Mon Apr 11 2022 16:26:01 GMT+0000 (Coordinated Universal Time)

Saved by @jlcornejo #clike

import 'package:flutter/material.dart';

void main() {
  runApp(MaterialApp(
    title: 'Flutter Tutorial',
    home: MyApp(),
    debugShowCheckedModeBanner: false,
  ));
}

class MyApp extends StatefulWidget {
  @override
  _State createState() => _State();
}

class _State extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Color(0xff885566),
        title: Text(
          'Flutter Tutorial - googleflutter.com',
        ),
      ),
      body: Container(),
    );
  }
}
content_copyCOPY

https://googleflutter.com/flutter-app-bar-color/