How can we change appbar background color in flutter

Vineeth Mohan picture Vineeth Mohan · Aug 8, 2018 · Viewed 43.3k times · Source

I am trying to set a common theme for app so I need to change appbar color as a color that indicates hex code #0f0a1a

const MaterialColor toolbarColor = const MaterialColor(
    0xFF151026, const <int, Color>{0: const Color(0xFF151026)});

I try this piece of code to make a custom color but fails. How can I do this from themeData?

Answer

Raouf Rahiche picture Raouf Rahiche · Aug 8, 2018

declare your Color like this

const PrimaryColor = const Color(0xFF151026);

and then in the MaterialApp level( will change the AppBar Color in the whole app ) change the PrimaryColor

return MaterialApp(
  title: 'Flutter Demo',
  theme: ThemeData(
   primaryColor: PrimaryColor,
   ),
  home: MyApp(),
);

and if you want to change it in the Widget level just change the backgroundColor

  appBar: AppBar(
    backgroundColor: PrimaryColor,
  ),