any_image_view 1.0.6 copy "any_image_view: ^1.0.6" to clipboard
any_image_view: ^1.0.6 copied to clipboard

A special Flutter package for displaying all kinds of images, including jpg, png,jpeg, SVG, lottie, and XFile, including network images with caching.

example/lib/main.dart

import 'package:any_image_view/any_image_view.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: MyHomePage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
          title: const Text(
            'Any Image View Example',
            style: TextStyle(color: Colors.white),
          ),
          centerTitle: true,
          backgroundColor: Colors.blue),
      body: ListView(
        children: <Widget>[
          //Local Asset Image

          //Lottie Animation
          AnyImageView(
            imagePath: "assets/lottie/flutter_mobile.json",
            height: 200,
            width: 300,
          ),
          //Lottie Animation

          AnyImageView(
            padding: const EdgeInsets.all(30),
            imagePath: "assets/png/flutter_banner.png",
            margin: const EdgeInsets.symmetric(horizontal: 10),
            width: 100,
            height: 300,
            borderRadius: BorderRadius.circular(30),
            boxFit: BoxFit.cover,
            onTap: () {
              print('image tapped');
            },
          ),
          //Local Asset Image

          //SVG Image

          AnyImageView(
            imagePath: 'assets/svg/flutter.svg',
            height: 100,
            width: 100,
            onTap: () {
              print('image tapped');
            },
            errorPlaceHolder: 'assets/png/not_found.png',
          ),

          //SVG Image

          //Network Image with CachedNetworkImage
          AnyImageView(
            padding: const EdgeInsets.only(top: 15),
            imagePath:
                'https://assets-global.website-files.com/6270e8022b05abb840d27d6f/6308d1ab615e60c9047c9d06_AppDev_Flutter-tools.png',
            height: 150,
            width: 300,
            borderRadius: BorderRadius.circular(15),
            boxFit: BoxFit.cover,
            alignment: Alignment.center,
            onTap: () {
              print('image tapped');
            },
            errorPlaceHolder: 'assets/png/not_found.png',
          ),

          //Network Image with CachedNetworkImage
        ],
      ),
    );
  }
}
copied to clipboard
56
likes
150
points
147
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.19 - 2025.04.03

A special Flutter package for displaying all kinds of images, including jpg, png,jpeg, SVG, lottie, and XFile, including network images with caching.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

cached_network_image, flutter, flutter_svg, lottie

More

Packages that depend on any_image_view