Reputation: 405
How to apply or use same color in flutter AppBar?
Check screenshot:
Upvotes: 2
Views: 490
Reputation: 29468
You can use setSystemUIOverlayStyle
, i.e. inside build
method
import 'package:flutter/services.dart';
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
statusBarColor: Theme.of(context).primaryColor
));
Upvotes: 3