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

A flexible editor create and manipulate diagrams programmatically. Easily generate, customize, and visualize diagrams within your applications.

example/lib/main.dart

import 'dart:ui' as ui;

import 'package:flutter/material.dart';
import 'package:yogurt_editor/yogurt_editor.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: Scaffold(
        body: Example(),
      ),
    );
  }
}

class Example extends StatefulWidget {
  const Example({super.key});

  @override
  State<Example> createState() => _ExampleState();
}

class _ExampleState extends State<Example> {
  late final EditorController controller;

  static int _nextId = 0;

  static int _id() => _nextId++;

  @override
  void initState() {
    super.initState();
    controller = EditorController(
      rootId: _id(),
      rootModel: CustomCellModel(
        builder: (context, state) {
          return const SizedBox();
        },
      ),
    );

    final n1 = controller.create(
      id: _id(),
      model: NodeModel(),
      state: const CellState(
        {
          Bounds: Bounds.fixed(
            left: 100,
            top: 100,
            width: 100,
            height: 100,
          ),
        },
      ),
    );

    controller.create(
      id: _id(),
      model: NodeModel(),
      state: const CellState(
        {
          Bounds: Bounds.fixed(
            left: 20,
            top: 20,
            width: 20,
            height: 20,
          ),
        },
      ),
      parent: n1,
    );

    controller.create(
      id: _id(),
      model: NodeModel(),
      state: const CellState(
        {
          Bounds: Bounds.fixed(
            left: 250,
            top: 150,
            width: 100,
            height: 100,
          ),
        },
      ),
    );

    controller.create(
      id: _id(),
      model: IntrinsicNodeModel(),
      state: const CellState(
        {
          String: 'inner text',
          Bounds: Bounds.intrinsic(
            top: 300,
            left: 300,
            delegate: IntrinsicBounds(),
          ),
        },
      ),
    );
  }

  @override
  void dispose() {
    controller.close();
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return EditorView(
      controller: controller,
    );
  }
}

class NodeModel extends CellModel {
  NodeModel();

  @override
  List<CellPlugin> get plugins => const [
        BoundsPlugin(),
        DragPlugin(),
        DropPlugin(),
      ];

  @override
  Widget build(BuildContext context, CellState state) {
    return ColoredBox(
      color: Colors.blue.withOpacity(0.3),
      child: state.has<String>() ? Text(state()) : null,
    );
  }
}

class IntrinsicNodeModel extends CellModel {
  IntrinsicNodeModel();

  @override
  List<CellPlugin> get plugins => const [
        IntrinsicBoundsPlugin(
          delegate: IntrinsicBounds(),
        ),
        DragPlugin(),
        DropPlugin(),
      ];

  @override
  Widget build(BuildContext context, CellState state) {
    return ColoredBox(
      color: Colors.blue,
      child: state.has<String>() ? Text(state()) : null,
    );
  }
}

class IntrinsicBounds extends IntrinsicBoundsDelegate {
  const IntrinsicBounds();

  @override
  Size computeDryLayout(CellController controller) {
    final builder = ui.ParagraphBuilder(ui.ParagraphStyle(
      fontSize: 14,
    ));

    builder.pushStyle(ui.TextStyle());
    builder.addText(controller.state<String>());

    final paragraph = builder.build();

    paragraph.layout(const ui.ParagraphConstraints(
      width: 120,
    ));

    return Size(paragraph.width, paragraph.height);
  }
}
0
likes
150
pub points
0%
popularity

Publisher

verified publisherronbb.fun

A flexible editor create and manipulate diagrams programmatically. Easily generate, customize, and visualize diagrams within your applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, freezed_annotation, yogurt_event_bus

More

Packages that depend on yogurt_editor