cursorHeight property

double cursorHeight

How thick the cursor will be.

The cursor will draw over the text. The cursor height will extend down between the boundary of characters. This corresponds to extending downstream relative to the selected position. Negative values may be used to reverse this behavior.

Implementation

double get cursorHeight => _cursorHeight;
void cursorHeight=(double value)

Implementation

set cursorHeight(double value) {
  if (_cursorHeight == value) {
    return;
  }
  _cursorHeight = value;
  markNeedsLayout();
}