setEllipsizeMode method
Implementation
@ControllerProps(NodeProps.kEllipsizeMode)
void setEllipsizeMode(String ellipsizeMode) {
var textOverflow = _textOverflow;
if (ellipsizeMode == 'tail') {
textOverflow = TextOverflow.ellipsis;
} else if (ellipsizeMode == 'clip') {
textOverflow = TextOverflow.clip;
}
if (textOverflow != _textOverflow) {
_textOverflow = textOverflow;
markDirty();
}
}