appBar: AppBar(
title: Text('AppBar'),
backgroundColor: Colors.white, // appbar color.
foregroundColor: Colors.black, // appbar text color.
),
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
statusBarColor: Colors.blue, //or set color with: Color(0xFF0000FF)
));
appBar: AppBar(
title: const Text('Example'),
backgroundColor: Colors.black,
),
appBar: AppBar(
title: Text('AppBar'),
foregroundColor: Colors.black; // appbar text color
),
appBar: AppBar(
title: const Text('Example IconTheme'),
iconTheme: IconThemeData(color: Colors.black),
backgroundColor: Colors.white,
),
appBar: AppBar(
title: const Text('Example'),
backgroundColor: Colors.black,
),