How to set status bar color when AppBar not present.
I have tried this but not working.
Widget build(BuildContext context) { SystemChrome.setSys
Simply add this to your build function, or main function.
import 'package:flutter/services.dart'; Widget build(BuildContext context) { SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light); ... }