paulonia_cache_image 1.1.0 copy "paulonia_cache_image: ^1.1.0" to clipboard
paulonia_cache_image: ^1.1.0 copied to clipboard

Flutter package for cache images in storage or memory from the network or Google Cloud Storage. It supports Android, iOS and Web.

example/lib/main.dart

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

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await PCacheImage.init();
  runApp(const MyApp());
}

/// {@template my_app}
/// My app
/// {@endtemplate}
class MyApp extends StatelessWidget {
  /// {@macro my_app}
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Paulonia Cache Image',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: const MyHomePage(title: 'Paulonia Cache Image'),
    );
  }
}

/// {@template my_home_page}
/// My home page
/// {@endtemplate}
class MyHomePage extends StatefulWidget {
  /// {@macro my_home_page}
  const MyHomePage({required this.title, super.key});

  /// The title of the page
  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Colors.white,
        title: Text(
          widget.title,
          style: const TextStyle(color: Colors.black),
        ),
      ),
      floatingActionButton: FloatingActionButton(
        backgroundColor: Colors.white,
        onPressed: () {
          setState(() {});
        },
        child: const Icon(
          Icons.refresh,
          color: Colors.black,
        ),
      ),
      body: ListView(
        children: [
          const ListTile(
            title: Text('In memory cached network image'),
          ),
          SizedBox(
            height: 250,
            child: Card(
              elevation: 10,
              child: Image(
                image: PCacheImage(
                  'https://i.imgur.com/jhRBVEp.jpg',
                  enableInMemory: true,
                ),
              ),
            ),
          ),
          const ListTile(
            title: Text('Storage cached network image'),
          ),
          SizedBox(
            height: 250,
            child: Card(
              elevation: 10,
              child: Image(
                image: PCacheImage(
                  'https://i.imgur.com/5RhnXjE.jpg',
                ),
              ),
            ),
          ),
          const ListTile(
            title: Text('Not cached image'),
          ),
          SizedBox(
            height: 250,
            child: Card(
              elevation: 10,
              child: Image(
                image: PCacheImage(
                  'https://i.imgur.com/inAkwKw.jpg',
                  enableCache: false,
                ),
              ),
            ),
          ),
        ],
      ),
    );
  }
}
35
likes
80
points
144
downloads

Publisher

verified publisherpaulonia.dev

Weekly Downloads

Flutter package for cache images in storage or memory from the network or Google Cloud Storage. It supports Android, iOS and Web.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

firebase_core, firebase_storage, flutter, hive, http, path_provider, paulonia_utils

More

Packages that depend on paulonia_cache_image