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.

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter Layers Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: 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,
          ),
        ),
      ),
    );
  }
}
6
likes
40
pub points
30%
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