I want to change the colour of the system navigation bar but I can't.
I got this:
import 'package:flutter/services.dart'
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light);
but it didn't work for me...
I used the code below to change the status bar colour it worked.
import 'package:flutter/services.dart'
systemOverlayStyle: SystemUiOverlayStyle(statusBarColor: Colors.white),