|
|
|
|
|
|
D.assert(this.selectionColor != null); |
|
|
|
var paint = new Paint {color = this.selectionColor}; |
|
|
|
|
|
|
|
Path barPath = new Path(); |
|
|
|
canvas.drawRect(box.toRect().shift(effectiveOffset), paint); |
|
|
|
barPath.addRect(box.toRect().shift(effectiveOffset)); |
|
|
|
canvas.drawPath(barPath, paint); |
|
|
|
} |
|
|
|
|
|
|
|
void _layoutText(float minWidth = 0.0f, float maxWidth = float.PositiveInfinity) { |
|
|
|