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

Flutter package to conveniently work with image widgets which comes from network, local, file and memory

example/lib/main.dart

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

void main() {
  Imager.placeholderPath = 'assets/placeholder.png';
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Imager Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Imager Demo'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Imager.fromNetwork('https://docs.flutter.dev/assets/images/flutter-logo-sharing.png'),
      ),
    );
  }
}
8
likes
150
pub points
43%
popularity

Publisher

verified publisherbuildtoapp.com

Flutter package to conveniently work with image widgets which comes from network, local, file and memory

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

cached_network_image, flutter, flutter_svg

More

Packages that depend on imager