drop_shadow_image 0.9.1 copy "drop_shadow_image: ^0.9.1" to clipboard
drop_shadow_image: ^0.9.1 copied to clipboard

A new Flutter package for creating drop shadow of image with a lot of properties to make it look much good.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:drop_shadow_image/drop_shadow_image.dart';
main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
          body:
          Center(
            child: DropShadowImage(
              offset: Offset(10,10),
              scale: 1,
              blurRadius: 10,
              borderRadius: 20,
              image: Image.asset('images/test.jpg',
                width: 300,),
            ),
          )
      ),
    );
  }
}
56
likes
140
pub points
89%
popularity

Publisher

verified publisherinerton.in

A new Flutter package for creating drop shadow of image with a lot of properties to make it look much good.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on drop_shadow_image