vyuh_node_flow 0.2.0+1 copy "vyuh_node_flow: ^0.2.0+1" to clipboard
vyuh_node_flow: ^0.2.0+1 copied to clipboard

A flexible, high-performance node-based flow editor for Flutter. Build visual programming interfaces, workflow editors, diagrams, and data pipelines with reactive state management, customizable themin [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:vyuh_node_flow_example/annotation_example.dart';
import 'package:vyuh_node_flow_example/connection_validation_example.dart';
import 'package:vyuh_node_flow_example/workbench_example.dart';
import 'viewer_example.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Vyuh Node Flow Example',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      // home: const PortCombinationsDemo(),
      home: const WorkbenchExample(),
      // home: const AnnotationExample(),
      // home: const ConnectionValidationExample(),
      // home: const ViewerExample(),

      // home: const NodeFlowExample(), // Render object example from render_object_example.dart
    );
  }
}
107
likes
0
points
3.69k
downloads

Publisher

verified publishervyuh.tech

Weekly Downloads

A flexible, high-performance node-based flow editor for Flutter. Build visual programming interfaces, workflow editors, diagrams, and data pipelines with reactive state management, customizable theming, and comprehensive interaction support.

Homepage
Repository (GitHub)
View/report issues

Topics

#node-editor #visual-programming #graph-editor #workflow #diagram

License

unknown (license)

Dependencies

collection, equatable, flutter, flutter_mobx, http, json_annotation, mobx, vector_math

More

Packages that depend on vyuh_node_flow