Eliav2

Results 69 comments of Eliav2

please refer to custom svg it the repo docs. ```ts type headShapeType = { svgElem: SVGElementTagNameMap[T]; offsetForward?: number; }; ``` try: ```ts import { arrowShapes } from 'react-xarrows'; const customSvg...

you could extend the line using offset option in the anchors. foe example const endAnchor= { position: 'auto'; offset: { x: 20,y:0 }; }; currently, you can only offset only...

understood, you are right and this is planned for the next release. will leave this issue open as a feature request until the next release that solves this.

I see this issue always comes back... this is easy to fix, but this is a quite common issue so I consider adding 'scale' property to the API as scaling...

As I explained in previous answer, it's a limition as both xarrow and draggable updates based on the same dom frame. You can go around it with another rerender.

thank you. interesting. will look into that soon. by the way, you did not used the v2 way. [this](https://codesandbox.io/s/react-xarrows-bug-force-render-forked-nxqkd?file=/src/Box.jsx) is how to write it in v2. but as you said...

a new very smart prop that in simple words delays the render(using memorization and extra renders) of xarrow will be available on the next release, that would handle cases like...

hey @jeffelector , i solved this by just copying the index.js file into local component file and changed timeCont style: ``` import { I18nManager } from "react-native"; timeCont: { flexDirection:...

Same here, it looks like the rnd wrapper always overide `top` `bottom` `right` `left` style properties no matter what you do, so this lib currently does not seems to support...

the thing with this lib is that its include also binaries and not only python files. you need to include them in the wheel somehow using setup.py. i almost succided....