Why from the code bellow Android displays grey background around status bar and iOS white? And how they can be made identical?
main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Container(
margin: EdgeInsets.only(top: 84),
child: Text(
'Create New',
style: TextStyle(fontSize: 48),
),
),
),
);
}
}
Grey background on Android: