Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 17 days ago
JSON representation
:bug: Flutter debug helper widget with common and custom actions [Work in progress]
- Host: GitHub
- URL: https://github.com/frezyx/flutter_admin
- Owner: Frezyx
- License: mit
- Created: 2021-09-05T11:18:50.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-15T07:55:41.000Z (9 months ago)
- Last Synced: 2024-10-10T05:36:54.387Z (29 days ago)
- Topics: dart, dartlang, debug, flutter, flutter-debugger, flutter-package, flutter-plugin, flutter-ui
- Language: Dart
- Homepage: https://pub.dev/packages/debug_friend
- Size: 1.94 MB
- Stars: 48
- Watchers: 1
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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'),
);
},
),
),
);
}
```