custom_paint 0.0.1

SDKflutter
Platformandroidioswindowslinuxmacosweb

A Flutter package for custom painting.

Custom Paint Package

A Flutter package for custom painting.

Usage

import 'package:custom_paint_package/custom_painter.dart';

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('Custom Painter Example'),
        ),
        body: Center(
          child: CustomPainterWidget(),
        ),
      ),
    );
  }
}