getMaterialYouPrimaryColor function

Future<Color?> getMaterialYouPrimaryColor()

Returns primary color for material you theme

Implementation

Future<Color?> getMaterialYouPrimaryColor() async {
  if (isAndroid && await isAndroid12Above()) {
    Map colors = await getMaterialYouColors();

    return colors['system_accent1_100'].toString().toColor();
  } else {
    return null;
  }
}