Debug Friend

Flutter debug helper widget with common and custom actions.

Image Image Image Image Image

Main features

  • Check device info & package info
  • Viewing and managing application cache
  • Flutter inspector features
  • Test your custom actions

Quickstart

Wrap your MaterialApp's home or builder widget in a DebugFriend.

import 'package:debug_friend/debug_friend.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(
    MaterialApp(
      home: DebugFriendView(
        builder: (context) {
          return const Scaffold(
            body: Text('Your app home widget'),
          );
        },
      ),
    ),
  );
}

GitHub

https://github.com/Frezyx/debug_friend