flutter_status_nav_bar
To change system status bar and navigation bar color of flutter app.
import 'flutter_status_nav_bar/flutter_status_nav_bar.dart';
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
//Call the setStatusNavBarColor here
setStatusNavBarColor(Colors.red,Colors.yellow);
//First color is for Statusbar
//Second color is for NavBar
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(