This helps you reduce the development and testing time of new features
Show some ❤️ and star the repo to support the project!
![]() | ![]() | ![]() | ![]() | ![]() |
|---|
- Check device info & package info
- Viewing and managing application cache
- Flutter inspector features
- Test your custom actions
Wrap your MaterialApp's home or builder widget in a DebugFriend.
import'package:debug_friend/debug_friend.dart';
import'package:flutter/material.dart';
voidmain() {
runApp(
MaterialApp(
home:DebugFriendView(
builder: (context) {
returnconstScaffold(
body:Text('Your app home widget'),
);
},
),
),
);
}



