image_x 0.0.6 copy "image_x: ^0.0.6" to clipboard
image_x: ^0.0.6 copied to clipboard

outdated

Lazy image widget for any path [Asset, Path, Url] for all image types.

example/example.md

Import package #

import 'package:image_x/image_x.dart';

Usage: #

class MyLogo extends StatelessWidget {
  const MyLogo({super.key});

  @override
  Widget build(BuildContext context) {
    return const ImageX(
      path: 'assets/images/logo.svg',
      height: 200,
      width: 200,
      scale: .66,
      decoration: BoxDecoration(
        borderRadius: BorderRadius.circular(100),
        border: Border.all(width: 2, color: Colors.blue),
      ),
      svgColor: Colors.blue,
    );
  }
}
0
likes
80
points
21
downloads

Publisher

unverified uploader

Weekly Downloads

Lazy image widget for any path [Asset, Path, Url] for all image types.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_svg, universal_io

More

Packages that depend on image_x