graph_plus 1.0.1-alpha copy "graph_plus: ^1.0.1-alpha" to clipboard
graph_plus: ^1.0.1-alpha copied to clipboard

Provides graphing and drawing features with a focus on software architecture diagramming capabilities

example/README.md

graph_plus Example #

Demonstrates how to use the graph_plus package

Getting Started #

flutter pub add graph_plus

Create a graph #

import 'package:graph_plus/graph.dart';

final graph = Graph(vertices: const[
    Vertex("A"),
    Vertex("B")
], edges: const [Edge.endpoints("a", "b")]);

If you need brevity in your code, consider using the abbreviated version:

import 'package: graph_plus/g.dart';

final g = G(vertices: const[
    V("A"),
    V("B")
], edges: const [E.endpoints("a", "b")]);
0
likes
140
points
24
downloads

Publisher

verified publisherarchmind.io

Weekly Downloads

Provides graphing and drawing features with a focus on software architecture diagramming capabilities

Repository (GitHub)
View/report issues

Topics

#graphing #diagramming #utils

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

core_extras, flutter, graph_plus_exporter

More

Packages that depend on graph_plus