How to change the color of the system navigation bar? (currently black on Android)

Widgets & Design
Resolved

The Android navigation bar is black. I would like to make it white but it doesn't work...

What have you tried so far?

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,
    ),
  );
}
Did you check FlutterFlow's Documentation for this topic?
Yes
1 reply