cached_memory_image 1.0.0 copy "cached_memory_image: ^1.0.0" to clipboard
cached_memory_image: ^1.0.0 copied to clipboard

outdated

A Flutter library to show images from the Base64, Uint8List and keep them in the cache directory.

example/lib/main.dart

import 'dart:typed_data';

import 'package:cached_memory_image/cached_memory_image.dart';
import 'package:cached_memory_image_example/image_data.dart';
import 'package:flutter/material.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Cached Memory Image'),
        ),
        body: Row(
          children: [
            Expanded(
              child: ListView.builder(
                itemCount: 2,
                itemBuilder: (context, index) => Padding(
                  padding: const EdgeInsets.all(8.0),
                  child: CachedMemoryImage(
                    uniqueKey: 'app://image/1',
                    base64: ImageData.base64,
                  ),
                ),
              ),
            ),
            Expanded(
              child: ListView.builder(
                itemCount: 2,
                itemBuilder: (context, index) => Padding(
                  padding: const EdgeInsets.all(8.0),
                  child: CachedMemoryImage(
                    uniqueKey: 'app://image/2',
                    bytes: Uint8List.fromList([1, 2, 3, 4, 5]),
                  ),
                ),
              ),
            ),
          ],
        ),
      ),
    );
  }
}
44
likes
0
pub points
94%
popularity

Publisher

verified publisherwachasit.com

A Flutter library to show images from the Base64, Uint8List and keep them in the cache directory.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_cache_manager

More

Packages that depend on cached_memory_image