placeholderTextSpan property

TextSpan placeholderTextSpan

Implementation

TextSpan get placeholderTextSpan {
  // TODO: support ::placeholder pseudo element
  return _buildTextSpan(
    text: placeholderText,
    // The color of placeholder.
    color: Color.fromARGB(255, 169, 169, 169)
  );
}