Constructor
new module:LinearGradient(fromPosition, toPosition, colorStops)
Linear-gradient constructor
Parameters:
Name | Type | Description |
---|---|---|
fromPosition | PositionDefinition | Starting position of the gradient |
toPosition | PositionDefinition | Ending position of the gradient |
colorStops | Object | Set of colors to go through (key is position [from 0 to 1], value is the color) |
Example
new LinearGradient(from, to, { 0: "red", 1: "green" });