Lines Matching refs:the

9  * An object `{ x: number; y: number }` or array `[x, y]` that represents the point
10 * at which the gradient starts or ends, as a fraction of the overall size of the gradient ranging
16 * A number ranging from `0` to `1`, representing the position of gradient transformation.
20 * A number ranging from `0` to `1`, representing the position of gradient transformation.
29 * An array of colors that represent stops in the gradient. At least two colors are required
30 * (for a single-color background, use the `style.backgroundColor` prop on a `View` component).
34 …at contains `number`s ranging from `0` to `1`, inclusive, and is the same length as the `colors` p…
36 * If not specified, the colors will be distributed evenly across the gradient.
39 * - the first color, solid, from the beginning of the gradient view to 50% through (the middle);
40 * - a gradient from the first color to the second from the 50% point to the 80% point; and
41 * - the second color, solid, from the 80% point to the end of the gradient view.
48 …For example, `{ x: 0.1, y: 0.2 }` means that the gradient will start `10%` from the left and `20%`…
50 …* **On web**, this only changes the angle of the gradient because CSS gradients don't support chan…
55 … For example, `{ x: 0.1, y: 0.2 }` means that the gradient will end `10%` from the left and `20%` …
57 …* **On web**, this only changes the angle of the gradient because CSS gradients don't support chan…
71 console.warn('LinearGradient colors and locations props should be arrays of the same length');
98 console.warn('start and end props for LinearGradient must be of the format [x,y] or {x, y}');