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

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
140
pub points
65%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on shadowed_image