appbar text color flutter code example
Example 1: how to change appbar color in flutter
appBar: AppBar(
title: const Text('Example'),
backgroundColor: Colors.black,
),
Example 2: app bar textStyle flutter
appBar: AppBar(
title: Text(
'Flutter Tutorial - googleflutter.com',
style: TextStyle(color: Color(0xffffffaa)),
),
),