forked from magicismight/react-native-svg-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRect.js
139 lines (128 loc) · 2.78 KB
/
Rect.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import React, {
Component
} from 'react';
import Svg, {
Rect
} from 'react-native-svg';
class RectExample extends Component{
static title = 'Rect';
render() {
return <Svg
width="200"
height="60"
>
<Rect
x="5%"
y="5%"
width="90%"
height="90%"
fill="rgb(0,0,255)"
strokeWidth="3"
stroke="rgb(0,0,0)"
strokeDasharray="5,10"
/>
</Svg>;
}
}
class RectStrokeFill extends Component{
static title = '`stroke` and `fill` Rect';
render() {
return <Svg
width="100"
height="100"
>
<Rect
x="20"
y="20"
width="75"
height="75"
fill="blue"
fillOpacity="0.5"
stroke="red"
strokeWidth="5"
strokeOpacity="0.5"
/>
</Svg>;
}
}
class RoundedRect extends Component{
static title = 'A rectangle with rounded corners';
render() {
return <Svg
width="100"
height="100"
>
<Rect
x="20"
y="20"
rx="20"
ry="20"
width="75"
height="75"
fill="blue"
stroke="pink"
strokeWidth="5"
/>
</Svg>;
}
}
class EllipseRect extends Component{
static title = 'Rect with different `rx` and `ry`';
render() {
return <Svg
width="100"
height="100"
>
<Rect
x="20"
y="20"
rx="40"
ry="20"
width="75"
height="75"
fill="blue"
stroke="pink"
strokeWidth="5"
/>
</Svg>;
}
}
class RoundOverflowRect extends Component{
static title = 'Rect with `rx` or `ry` overflowed';
render() {
return <Svg
width="100"
height="100"
>
<Rect
x="20"
y="20"
ry="40"
width="75"
height="75"
fill="blue"
stroke="pink"
strokeWidth="5"
/>
</Svg>;
}
}
const icon = <Svg
width="20"
height="20"
>
<Rect
x="3"
y="5"
width="14"
height="10"
fill="rgb(0,0,255)"
strokeWidth="2"
stroke="rgb(255,0,0)"
/>
</Svg>;
const samples = [RectExample, RectStrokeFill, RoundedRect, EllipseRect, RoundOverflowRect];
export {
icon,
samples
};