memory_monitor_overlay 0.0.6 copy "memory_monitor_overlay: ^0.0.6" to clipboard
memory_monitor_overlay: ^0.0.6 copied to clipboard

A simple Flutter overlay to monitor memory usage in real-time

memory_monitor_overlay #

Pub Version Pub Monthly Downloads codecov

A simple Flutter overlay to monitor memory usage in real-time

Features #

  • Draggable overlay widget
  • Customizable colors and text
  • Easily add to any screen

Getting started #

Add the following to your pubspec.yaml file:

dependencies:
  memory_monitor_overlay: ^0.0.1

Usage #

import 'package:memory_monitor_overlay/memory_monitor_overlay.dart';

Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('Memory Monitor Demo'), elevation: 2),
      body: Stack(
        children: [
          Center(
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              children: [
                const Text(
                  'Memory Monitor Overlay',
                  style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
                ),
              ],
            ),
          ),

          // Add memory monitory overlay
          const MemoryMonitorOverlay(
            updateInterval: Duration(milliseconds: 500),
            initialX: 20,
            initialY: 100,
          ),
        ],
      ),
    );
  }

Screenshot #

1
likes
160
points
9
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A simple Flutter overlay to monitor memory usage in real-time

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on memory_monitor_overlay