Package for creating shadow of same color scheme as the image.
- Add this to your package's
pubspec.yamlfile:
dependencies:
shadowed_image: ^latest- Import the package into your dart file:
import 'package:shadowed_image/shadowed_image.dart';import 'package:shadowed_image/shadowed_image.dart';
import 'package:flutter/material.dart';
void main() => runApp(AppBody());
class _AppBodyState extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: ShadowedImage(image: Image.asset('assets/images/download.jpg'))
),
);
}
}1. Key key
2. double scale // Size to parent.
3. Offset offset // Position of shadow. Takes 2 arguments- first one (dx) for horizontal component and second (dy) for vertical component.
4. double blurRadius // Amount of blur in the shadow. 0 means no blur.
5. Image image (@required) // The image.
*If scale provided then offset should not be unchanged.
