setNavigationBarWhiteForeground static method

Future<void> setNavigationBarWhiteForeground(
  1. bool useWhiteForeground
)

Android only

Set the navigation bar foreground brightness. Set to true, the color of the text and icon will be white, otherwise black.

Implementation

static Future<void> setNavigationBarWhiteForeground(
        bool useWhiteForeground) =>
    _channel.invokeMethod('setnavigationbarwhiteforeground', {
      'whiteForeground': useWhiteForeground,
    });