blueprint_system 0.1.2 copy "blueprint_system: ^0.1.2" to clipboard
blueprint_system: ^0.1.2 copied to clipboard

A flutter library that creates blueprint widgets with nodes (child widgets) that may be added to them. These nodes can be moved, resized, and modified.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'pages/home_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Blueprint Example',
      home: const Home(),
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: const ColorScheme.light(),
      ),
    );
  }
}
9
likes
100
pub points
37%
popularity

Publisher

unverified uploader

A flutter library that creates blueprint widgets with nodes (child widgets) that may be added to them. These nodes can be moved, resized, and modified.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, get, intl, uuid, vector_math

More

Packages that depend on blueprint_system