How to make the status bar background same as app background – Flutter – Make text black on white status bar?
I was using Color.transparent in Main() for it, but on white backgrounds the status bar text gets removed.
My code:
import 'package:flutter/services.dart';
void main() {
SystemChrome.setSystemUIOverlayStyle(
SystemUiOverlayStyle(
statusBarColor: Colors.transparent,
),
);
runApp(const MyApp());
}
2
Answers
Try this :