The Android navigation bar is black. I would like to make it white but it doesn't work...
How to change the color of the system navigation bar? (currently black on Android)
Widgets & Design
Resolved
I tried this custom action that I add in the main.dart (through initial actions) :
import 'package:flutter/services.dart';
Future<void> changeNavigationBarColor() async {
SystemChrome.setSystemUIOverlayStyle(
const SystemUiOverlayStyle(
systemNavigationBarColor: Colors.white,
systemNavigationBarIconBrightness: Brightness.dark,
),
);
}Yes
1 reply