enterForeground property

Color? get enterForeground

Implementation

Color? get enterForeground {
  switch (inputAction) {
    case TextInputAction.done:
    case TextInputAction.go:
    case TextInputAction.search:
    case TextInputAction.send:
    case TextInputAction.join:
    case TextInputAction.route:
    case TextInputAction.emergencyCall:
      return Colors.white;
    default:
      return null;
  }
}