Answers for "how to change color notification bar in flutter"

0

how to change color notification bar in flutter

import 'package:flutter/services.dart';
 Widget build(BuildContext context) {
    SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
       statusBarColor: Color(0xFF2E7D32),
    ));
 
    return MaterialApp()
Posted by: Guest on June-23-2020

Code answers related to "how to change color notification bar in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language