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

A new Flutter package which helps developer to show layers in the applications.

layers #

A new Flutter package which helps developer to show layers in the applications.

Getting Started #

Screenshots #

you can add layers in your container card by giving child as below


Container(
        color: Colors.white,
        child: CustomPaint(
          painter: CustomPainter1(),
        ),
      )

you can also manipulate the code by adding colors and opacity and radius of gradient circle as below


Container(
        color: Colors.white,
        child: CustomPaint(
          painter: CustomPainter1(
            colors1: [
              Colors.greenAccent.withOpacity(0.7),
              Colors.greenAccent.withOpacity(0.8),
            ],
            radius1: 300,
            colors2: [
              Colors.greenAccent.withOpacity(0.7),
              Colors.greenAccent.withOpacity(0.8),
            ],
            radius2: 300,
            colors3: [
              Colors.greenAccent.withOpacity(0.7),
              Colors.greenAccent.withOpacity(0.8),
            ],
            radius3: 300,
          ),
        ),
      )

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

6
likes
40
pub points
32%
popularity

Publisher

unverified uploader

A new Flutter package which helps developer to show layers in the applications.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on layers