shadowed_image 1.0.1 copy "shadowed_image: ^1.0.1" to clipboard
shadowed_image: ^1.0.1 copied to clipboard

outdated

A new Flutter package for creating shadow of same color scheme as the image..

example/main.dart

import 'package:flutter/material.dart';
import 'package:shadowed_image/shadowed_image.dart';
main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          title: Text('Shadowed Image Example'),
        ),
        body: Center(
          child: ShadowedImage(
            image: Image.asset('assets/images/download.jpg'),
            blurRadius: 15,
            borderRadius: 10,
          ),
        ),
      ),
    );
  }
}
56
likes
0
pub points
69%
popularity

Publisher

unverified uploader

A new Flutter package for creating shadow of same color scheme as the image..

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on shadowed_image