change tabbar color flutter code example
Example 1: how to change appbar color in flutter
appBar: AppBar(
title: const Text('Example'),
backgroundColor: Colors.black,
),
Example 2: change color icon tabbar flutter
appBar: AppBar(
brightness: Brightness.dark,
iconTheme: IconThemeData(color: Colors.white),
title: Text("Title TabBar"),
)