Anton Lempiy

Results 9 comments of Anton Lempiy

@acgleader , this functionality is not implemented yet. But u can try to do it, via pathBuilder by yourself.

I haven't tested how it works on web, but you may try to use onEdgeTapDown, onEdgeTapUp. Edges gestures works on top of https://github.com/nateshmbhat/touchable lib.

@mikeryder I think it would be better(for wide usage) to implement generic field `payload` inside NodeInput, and passthrough this data to NodeOutput. In this case, you will be able to...

@orestesgaolin Hello. Currently, core package of library generates 2d matrix, which may be used to render through different types of renderers. You may find different core implementations in [Go](https://github.com/lempiy/dgraph)(ASCII rendering)...

related issue https://github.com/nateshmbhat/touchable/issues/18

@Dragemil For `` sounds reasonable. It's not to hard to implement via some kind of edges "merge", but currently not available. About labels on edges: Because widget is built on...

Hi. Graphite uses [touchable](https://pub.dev/documentation/touchable/latest/) library to track edge gestures. Support for hover events in this lib is not delivered yet. But some PRs already exist [#52](https://github.com/nateshmbhat/touchable/pull/52). So we're waiting for...

Theoretically you can detect hover by your own code using pathBuilder + hover gesture tracker inside Interactiveviewer.

Hello. This package uses grid approach for graph representation, meaning that graph's underlying coordinate space is, basically, a 2d Matrix. Drawing trees in manner above goes out of current grid...