Macaw
Macaw

Reputation: 405

How to make same color in AppBar in Flutter

How to apply or use same color in flutter AppBar?

Check screenshot:

screenshot

Upvotes: 2

Views: 490

Answers (1)

Andrii Turkovskyi
Andrii Turkovskyi

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

Related Questions