Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Frezyx/flutter_admin

:bug: Flutter debug helper widget with common and custom actions [Work in progress]
https://github.com/Frezyx/flutter_admin

dart dartlang debug flutter flutter-debugger flutter-package flutter-plugin flutter-ui

Last synced: about 2 months ago
JSON representation

:bug: Flutter debug helper widget with common and custom actions [Work in progress]

Awesome Lists containing this project

README

        



Debug Friend



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!



| ![Image](https://github.com/Frezyx/flutter_admin/blob/main/packages/debug_friend/example/repo_files/preview.gif?raw=true) | ![Image](https://github.com/Frezyx/flutter_admin/blob/main/packages/debug_friend/example/repo_files/s1.jpg?raw=true) | ![Image](https://github.com/Frezyx/flutter_admin/blob/main/packages/debug_friend/example/repo_files/s2.jpg?raw=true) | ![Image](https://github.com/Frezyx/flutter_admin/blob/main/packages/debug_friend/example/repo_files/s3.jpg?raw=true) | ![Image](https://github.com/Frezyx/flutter_admin/blob/main/packages/debug_friend/example/repo_files/s4.jpg?raw=true) |
| :------------: | :------------: | :------------: | :------------: | :------------: |

## 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.

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