drop_shadow_image 0.9.1 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.
drop_shadow_image #
Package for creating drop shadow effect of an image, with lots of properties to apply.
Installation #
- Add this to your package's
pubspec.yaml
file:
dependencies:
drop_shadow_image: ^0.9.0
- Import the package into your dart file:
import 'package:drop_shadow_image/drop_shadow_image.dart';
Example #
import 'dart:ui';
import 'package:drop_shadow_image/drop_shadow_lib.dart';
import 'package:flutter/material.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: 12,
borderRadius: 20,
image: Image.asset('assets/cat.png',
width: 300,),
),
)
),
);
}
}
Properties of the lass #
1. Key key
2. double scale // Size to parent.
3. Offset offset // Position of shadow. (dx) for horizontal displacement (dy) for vertical displacement.
4. double blurRadius // Amount of blur in the shadow. 0 means no blur.
5. double borderRadius // border radius of image
6. Image image (@required) // The image.