backgroundCursorColor property
The color to use when painting the cursor aligned to the text while rendering the floating cursor.
Typically this would be set to CupertinoColors.inactiveGray.
If this is null, the background cursor is not painted.
See also:
- FloatingCursorDragState, which explains the floating cursor feature in detail.
Implementation
Color? get backgroundCursorColor => _caretPainter.backgroundCursorColor;
Implementation
set backgroundCursorColor(Color? value) {
_caretPainter.backgroundCursorColor = value;
}