Visualizzare immagini in Flutter con cached_network_image

Mattepuffo's logo
Visualizzare immagini in Flutter con cached_network_image

Visualizzare immagini in Flutter con cached_network_image

cached_network_image è un package per Flutter che ci consente di visualizzare immagini dalla rete e di metterla in cache.

Quindi ci permette sia di avere una lazy loading delle immagini, sia di velocizzarne un ulteriore caricamento.

Per installarlo:

flutter pub add cached_network_image

Qui sotto un esempio di codice:

import 'package:cached_network_image/cached_network_image.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 MaterialApp(
      title: 'Flutter Test',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.deepPurple,
        ),
        useMaterial3: true,
      ),
      home: const MyHomePage(),
    );
  }
}

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

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

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: const Text('Flutter Test'),
      ),
      body: Center(
        child: CachedNetworkImage(
          imageUrl: "http://via.placeholder.com/350x150",
          progressIndicatorBuilder: (context, url, downloadProgress) =>
              CircularProgressIndicator(value: downloadProgress.progress),
          errorWidget: (context, url, error) => const Icon(Icons.error),
        ),
      ),
    );
  }
}

Ovviamente, essendo sostanzialmente un widget, è possibile usarlo in diversi modi.

Ad esempio all'interno di una lista.

Enjoy!


Condividi

Commentami!