clip_shadow 0.2.1 copy "clip_shadow: ^0.2.1" to clipboard
clip_shadow: ^0.2.1 copied to clipboard

A shadow cast by a clipped box. Support all BoxShadow class properties!

example/lib/main.dart

import 'package:clip_shadow/clip_shadow.dart';
import './clipper.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home: Scaffold(
        appBar: AppBar(
          title: Text('example'),
        ),
        body: Container(
          width: 375.0,
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.center,
            children: <Widget>[
              SizedBox(height: 30.0),
              Container(
                height: 100.0,
                decoration: BoxDecoration(
                    color: Colors.blueAccent,
                    boxShadow: [
                      BoxShadow(
                        offset: Offset(0.0, 0.0),
                        blurRadius: 10.0,
                        spreadRadius: 10.0,
                        color: Color.fromRGBO(196, 196, 196, 1),
                      )
                    ]
                ),
                child: Text('normal box shadow',
                  style: TextStyle(
                      fontSize: 30.0
                  ),
                ),
              ),
              SizedBox(height: 30.0),
              ClipShadow(
                clipper: TicketClipper(20.0),
                boxShadow: [
                  BoxShadow(
                    offset: Offset(0.0, 0.0),
                    blurRadius: 10.0,
                    spreadRadius: 10.0,
                    color: Color.fromRGBO(196, 196, 196, 1),
                  )
                ],
                child: Container(
                  color: Colors.redAccent,
                  height: 100.0,
                  child: Text('clip shadow example',
                    style: TextStyle(
                      fontSize: 30.0,
                    ),
                  ),
                ),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
24
likes
30
pub points
89%
popularity

Publisher

unverified uploader

A shadow cast by a clipped box. Support all BoxShadow class properties!

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on clip_shadow