|
|
|
|
|
|
this.selectPositionAt(from: this._lastTapDownPosition, cause: cause); |
|
|
|
} |
|
|
|
|
|
|
|
void selectWord(SelectionChangedCause? cause = null) { |
|
|
|
public void selectWord(SelectionChangedCause? cause = null) { |
|
|
|
this.selectWordsInRange(from: this._lastTapDownPosition, cause: cause); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void selectWordEdge(SelectionChangedCause cause) { |
|
|
|
public void selectWordEdge(SelectionChangedCause cause) { |
|
|
|
this._layoutText(this.constraints.maxWidth); |
|
|
|
D.assert(this._lastTapDownPosition != null); |
|
|
|
if (this.onSelectionChanged != null) { |
|
|
|