visual_cache 1.0.0-betta.2 copy "visual_cache: ^1.0.0-betta.2" to clipboard
visual_cache: ^1.0.0-betta.2 copied to clipboard

Visual Cache was created to help you see how much cache your application has accumulated.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:visual_cache/widget/visual_widget.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Visual cache Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.greenAccent),
        useMaterial3: true,
      ),
      home: const MyHomePage(title: 'Visual cache Demo'),
    );
  }
}

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

  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: const Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'Cache size',
              style: TextStyle(fontSize: 24),
            ),
             SizedBox(height: 70,),

             VisualCacheWidget(subdirectories: ['NewFolder','NewFolder2', 'NewFolder3'],)
          ],
        ),
      ),
    );
  }
}
5
likes
0
points
37
downloads

Publisher

verified publishersmollaitc.org

Weekly Downloads

Visual Cache was created to help you see how much cache your application has accumulated.

Repository (GitHub)
View/report issues

Topics

#visual-cache #cache #image-picker #files

License

unknown (license)

Dependencies

flutter, path_provider, pie_chart

More

Packages that depend on visual_cache