setThemeColor static method

dynamic setThemeColor(
  1. String hexColor
)

Set theme color

hexColor requires 6-digit hexadecimal color code, such as #FFFFFF the defualt theme color is #A257FA

Implementation

static setThemeColor(String hexColor) {
  if (Platform.isIOS) {
    _channel.invokeMethod("setThemeColor", hexColor);
  } else {
    // not supported
  }
}