Site icon Flutter Packages | Pub dev Packages – Flutter Mobile App World

Flutter debug helper widget with common and custom actions

This helps you reduce the development and testing time of new features
Show some  and star the repo to support the project!

Main features

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'),
          );
        },
      ),
    ),
  );
}

Download Flutter debug helper widget source code on GitHub

Exit mobile version
Skip to toolbar