image_cacheing 0.0.1
image_cacheing: ^0.0.1 copied to clipboard
image cacheing widget which cache images to fast load
import 'package:example/screens/home.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(primarySwatch: Colors.blue),
home: HomePage(),
);
}
}