1import React from 'react'; 2import * as Svg from 'react-native-svg'; 3 4import Example from './Example'; 5 6const { G, Circle, Text } = Svg; 7 8class PathExample extends React.Component { 9 static title = 'Path'; 10 11 render() { 12 return ( 13 <Svg.Svg height="100" width="100"> 14 <Svg.Path d="M50 0 L15 100 L85 100 Z" /> 15 16 <Svg.Path 17 fill="red" 18 d="M38.459,1.66A0.884,0.884,0,0,1,39,2.5a0.7,0.7,0,0,1-.3.575L23.235,16.092,27.58,26.1a1.4,1.4,0,0,1,.148.3,1.3,1.3,0,0,1,0,.377,1.266,1.266,0,0,1-2.078.991L15.526,20.6l-7.58,4.35a1.255,1.255,0,0,1-.485,0,1.267,1.267,0,0,1-1.277-1.258q0-.01,0-0.02a1.429,1.429,0,0,1,0-.446C7.243,20.253,8.6,16.369,8.6,16.29L3.433,13.545A0.743,0.743,0,0,1,2.9,12.822a0.822,0.822,0,0,1,.623-0.773l8.164-2.972,3.018-8.5A0.822,0.822,0,0,1,15.427,0a0.752,0.752,0,0,1,.752.555l2.563,6.936S37.65,1.727,37.792,1.685A1.15,1.15,0,0,1,38.459,1.66Z" 19 /> 20 <Svg.Path 21 fill="blue" 22 d="M6.5 1C7.9 1 9 2.1 9 3.5c0 .8-.4 1.6-1.1 2.1-.4.2-.9.4-1.4.4s-1-.2-1.4-.4C4.4 5.1 4 4.3 4 3.5 4 2.1 5.1 1 6.5 1m0-1C4.6 0 3 1.6 3 3.5c0 1.2.6 2.2 1.5 2.9.6.4 1.3.6 2 .6s1.4-.2 2-.6c.9-.7 1.5-1.7 1.5-2.9C10 1.6 8.4 0 6.5 0zm3.6 8.9c.6.8.9 1.7.9 2.6v.5H2v-.5c0-1 .3-1.9.9-2.6 1 .7 2.3 1.1 3.6 1.1s2.6-.4 3.6-1.1m.2-1.4C9.3 8.4 8 9 6.5 9s-2.8-.6-3.8-1.5c-1.1 1-1.7 2.4-1.7 4 0 .5.1 1.5.2 1.5h10.6c.1 0 .2-1 .2-1.5 0-1.6-.7-3-1.7-4z" 23 /> 24 </Svg.Svg> 25 ); 26 } 27} 28 29class UnclosedPath extends React.Component { 30 static title = 'Unclosed paths'; 31 render() { 32 return ( 33 <Svg.Svg height="100" width="100"> 34 <Svg.Path 35 d="M25 10 L98 65 L70 25 L16 77 L11 30 L0 4 L90 50 L50 10 L11 22 L77 95 L20 25" 36 fill="none" 37 stroke="red" 38 strokeWidth="1" 39 /> 40 </Svg.Svg> 41 ); 42 } 43} 44 45class BezierCurve extends React.Component { 46 static title = 47 'The following example creates a quadratic Bézier curve, where A and C are the start and end points, B is the control point'; 48 render() { 49 return ( 50 <Svg.Svg height="200" width="225"> 51 <G scale="0.5"> 52 <Svg.Path d="M 100 350 l 150 -300" stroke="red" strokeWidth="3" fill="none" /> 53 <Svg.Path d="M 250 50 l 150 300" stroke="red" strokeWidth="3" fill="none" /> 54 <Svg.Path d="M 175 200 l 150 0" stroke="green" strokeWidth="3" fill="none" /> 55 <Svg.Path d="M 100 350 q 150 -300 300 0" stroke="blue" strokeWidth="5" fill="none" /> 56 <G stroke="purple" strokeWidth="3" fill="purple" r="3"> 57 <Circle cx="100" cy="350" /> 58 <Circle cx="250" cy="50" /> 59 <Circle cx="400" cy="350" /> 60 </G> 61 <G fontSize="30" fill="black" stroke="none" textAnchor="middle"> 62 <Text x="100" y="350" dx="-30"> 63 A 64 </Text> 65 <Text x="250" y="50" dy="-50"> 66 B 67 </Text> 68 <Text x="400" y="350" dx="10"> 69 C 70 </Text> 71 </G> 72 </G> 73 </Svg.Svg> 74 ); 75 } 76} 77const icon = ( 78 <Svg.Svg width="20" height="20" viewBox="0 0 20 20"> 79 <G fillRule="evenodd"> 80 <Svg.Path 81 d="M3.304 15.294h10.993V4.284H3.304v11.01zM16.87 2.997H.732c-.403 0-.732.29-.732.644 0 .353.33.643.732.643H1.99v11.652c0 .354.296.644.657.644H14.91c.008 0 .015-.005.022-.005.008 0 .014.005.022.005.363 0 .658-.29.658-.644V4.284h1.258c.402 0 .731-.29.731-.643 0-.353-.329-.644-.731-.644z" 82 fill="red" 83 /> 84 <Svg.Path 85 d="M7.355 13.28V6.763a.558.558 0 0 0-.562-.55.558.558 0 0 0-.563.55v6.519c0 .301.253.55.563.55a.558.558 0 0 0 .562-.55M11.442 13.28V6.763a.558.558 0 0 0-.562-.55.558.558 0 0 0-.563.55v6.519c0 .301.253.55.563.55a.558.558 0 0 0 .562-.55M12.737 1.267C12.327.498 11.435.014 10.574.004 10.07-.002 9.545 0 9.264.002 8.624 0 7.532-.002 7.028.004c-.861.01-1.752.494-2.163 1.263-.289.543-.321.85-.343 1.143h1.209c.178-1.212 1.03-1.196 1.759-1.212.056-.002 1.134-.003 1.782-.004.293.001.784.002.84.004.728.016 1.58 0 1.76 1.212h1.208c-.022-.293-.054-.6-.343-1.143" 86 fill="red" 87 /> 88 </G> 89 </Svg.Svg> 90); 91 92const Path: Example = { 93 icon, 94 samples: [PathExample, UnclosedPath, BezierCurve], 95}; 96 97export default Path; 98