flow_graph 0.0.9 copy "flow_graph: ^0.0.9" to clipboard
flow_graph: ^0.0.9 copied to clipboard

DAG graph on flutter.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData.light(),
      darkTheme: ThemeData.dark(),
      themeMode: ThemeMode.dark,
      home: HomePage(),
    );
  }
}
19
likes
60
points
30
downloads

Publisher

verified publisherdev.apptoy.cc

Weekly Downloads

DAG graph on flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

collection, flutter, logger, ulid

More

Packages that depend on flow_graph