drawing_pad 0.0.1 copy "drawing_pad: ^0.0.1" to clipboard
drawing_pad: ^0.0.1 copied to clipboard

A highly customisable drawing pad for Flutter.

example/lib/main.dart

import 'package:example/home_page.dart';
import 'package:example/mobile/mobile.dart';
import 'package:example/responsive_layout.dart';
import 'package:flutter/material.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
        scaffoldBackgroundColor: Colors.white,
      ),
      home: const ResponsiveLayout(mobile: MobilePage(), web: HomePage()),
    );
  }
}
1
likes
130
points
28
downloads

Publisher

verified publishersorceltech.com

Weekly Downloads

A highly customisable drawing pad for Flutter.

Homepage

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, flutter_svg, universal_html, universal_platform

More

Packages that depend on drawing_pad