electric_digital_sketch 1.0.3 copy "electric_digital_sketch: ^1.0.3" to clipboard
electric_digital_sketch: ^1.0.3 copied to clipboard

Offline-first Flutter package for drawing, annotating and exporting electrical network sketches.

example/lib/main.dart

import 'package:electric_digital_sketch/ui/electric_sketch_page.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        textTheme: GoogleFonts.poppinsTextTheme(),
        colorScheme: .fromSeed(seedColor: Colors.deepPurple),
      ),
      home: ElectricSketchPage(
        onConfirm: (file){
          print(file);
        },
      ),
    );
  }
}
1
likes
150
points
45
downloads

Documentation

Documentation
API reference

Publisher

unverified uploader

Weekly Downloads

Offline-first Flutter package for drawing, annotating and exporting electrical network sketches.

Repository (GitHub)
View/report issues

Topics

#electrical #drawing #editor #sketch

License

MIT (license)

Dependencies

collection, electric_shapes, file_selector, flutter, geolocator, mb_color_picker, phosphor_flutter, share_plus, simple_painter, tabler_icons_plus, universal_io

More

Packages that depend on electric_digital_sketch