flowy_graph 0.1.2
flowy_graph: ^0.1.2 copied to clipboard
A Flutter package for building interactive node-based editors, flow diagrams, and graph visualizations with ease.
import 'package:example/Example2/example2_page.dart';
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) => const MaterialApp(home: Example2Page());
}