DashPathEffect
Create dashed or dotted lines.| Name | Type | Description |
|---|---|---|
| intervals | number[] | Array of on/off lengths |
| phase | number | Offset into intervals (default: 0) |
| children | ReactNode | Content to apply effect to |
Dash Patterns
Simple Dash
Dot Pattern
Complex Pattern
Animated Dash
Use thephase property to animate dashes:
CornerPathEffect
Round sharp corners in paths.| Name | Type | Description |
|---|---|---|
| r | number | Corner radius |
| children | ReactNode | Content to apply effect to |
DiscretePathEffect
Break paths into random discrete segments.| Name | Type | Description |
|---|---|---|
| length | number | Segment length |
| deviation | number | Random deviation amount |
| seed | number | Random seed (default: 0) |
| children | ReactNode | Content to apply effect to |
Path1DPathEffect
Stamp a path repeatedly along another path.| Name | Type | Description |
|---|---|---|
| path | SkPath | Path to stamp |
| advance | number | Distance between stamps |
| phase | number | Offset along path |
| style | Path1DEffectStyle | Stamping style |
| children | ReactNode | Content to apply effect to |
Path1D Styles
"translate"- Stamps are only translated"rotate"- Stamps rotate to follow the path"morph"- Stamps morph to follow the path
Path2DPathEffect
Stamp a path in a 2D grid pattern.| Name | Type | Description |
|---|---|---|
| matrix | SkMatrix | Transformation matrix for grid |
| path | SkPath | Path to stamp |
| children | ReactNode | Content to apply effect to |
Line2DPathEffect
Create a pattern of lines.| Name | Type | Description |
|---|---|---|
| width | number | Line width |
| matrix | SkMatrix | Grid transformation |
| children | ReactNode | Content to apply effect to |
Combining Path Effects
Path effects can be combined by nesting them. The innermost effect is applied first:Sum Path Effect
TheSum component applies multiple path effects in parallel and combines the results:
Imperative API
Create path effects imperatively:Common Use Cases
Dashed Border
Hand-Drawn Effect
Animated Dash Border
Related
- Paths - Path drawing and manipulation
- Image Filters - Content effects
- Paint Properties - Stroke and fill options