Last updated:
0 purchases
shadowed image
Package for creating shadow of same color scheme as the image.
Installation #
Add this to your package's pubspec.yaml file:
dependencies:
shadowed_image: ^latest
copied to clipboard
Import the package into your dart file:
import 'package:shadowed_image/shadowed_image.dart';
copied to clipboard
Usage #
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'))
),
);
}
}
copied to clipboard
Properties #
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.
copied to clipboard
Note #
*If scale provided then offset should not be unchanged.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.