I changed the background color of the appBar in one of my screens. It's now white, but the device time display and icons like the wifi icon don't show. How can I change the color of these device icons?
This is what I want to achieve
Here is my appBar code
child: Scaffold(
backgroundColor: KjobbersAppTheme.white,
appBar: AppBar(
elevation: 0.0,
textTheme: TextTheme(
title: TextStyle(
color: Colors.grey,
fontSize: 20.0,
)),
backgroundColor: KjobbersAppTheme.white,
leading: IconButton(
icon: Icon(
Icons.arrow_back,
color: AppTheme.grey,
),
onPressed: () => Navigator.pop(context),
),
iconTheme: IconThemeData(color: Colors.grey, size: 20),
actions: <Widget>[
new IconButton(
icon: new Icon(Icons.search),
onPressed: () {},
),
new IconButton(
icon: new Icon(Icons.search),
onPressed: () {},
),
],
),