2

How to apply or use same color in flutter AppBar?

Check screenshot:

screenshot

Cœur
  • 37,241
  • 25
  • 195
  • 267
Macaw
  • 385
  • 2
  • 4
  • 11
  • 1
    here is the answer. Check this link below. Thank you. https://stackoverflow.com/questions/45925734/how-to-make-device-top-panel-status-bar-have-the-same-background-color-as-appb?rq=1 – just don't be user123 Oct 14 '18 at 07:15
  • @VirenVVarasadiya I've approved your edit, but please don't reupload StackExchange images (stack.imgur.com); just apply the markup manually to existing ones and keep an image description if possible. – Cœur Oct 14 '18 at 13:22
  • So, did you check the answer, find what you're looking for? – Andrii Turkovskyi Jan 21 '19 at 09:47

1 Answers1

3

You can use setSystemUIOverlayStyle, i.e. inside build method

import 'package:flutter/services.dart';

SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
    statusBarColor: Theme.of(context).primaryColor
));
Andrii Turkovskyi
  • 27,554
  • 16
  • 95
  • 105