All Projects → sergiandreplace → flutter_debug_drawer

sergiandreplace / flutter_debug_drawer

Licence: BSD-3-Clause license
Adds a side menu in all screens with debug information. You can decide which information to show and create new modules to include more information.

Programming Languages

dart
5743 projects
swift
15916 projects
kotlin
9241 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to flutter debug drawer

live-platform
Add breakpoints, logs, metrics, and spans to live production applications
Stars: ✭ 37 (+42.31%)
Mutual labels:  debug
android-sdk
AppSpector is a debugging service for mobile apps
Stars: ✭ 39 (+50%)
Mutual labels:  debug
ts-transform-react-jsx-source
TypeScript AST Transformer that adds source file and line number to JSX elements
Stars: ✭ 12 (-53.85%)
Mutual labels:  debug
UnitySettings
Runtime debugging menu (like setting on Android) for Unity.
Stars: ✭ 26 (+0%)
Mutual labels:  debug
debug
A small debugging library for C++
Stars: ✭ 30 (+15.38%)
Mutual labels:  debug
dd
This package will add the dd and dump helpers to your Phalcon application.
Stars: ✭ 17 (-34.62%)
Mutual labels:  debug
plasma
A declarative, immediate mode UI widget library for Roblox.
Stars: ✭ 35 (+34.62%)
Mutual labels:  debug
sendmessage
SendMessage is a little tool to send Windows messages to any window.
Stars: ✭ 93 (+257.69%)
Mutual labels:  debug
robotframework-debuglibrary
A debug library for RobotFramework, which can be used as an interactive shell(REPL) also.
Stars: ✭ 96 (+269.23%)
Mutual labels:  debug
dora
🌟Dora is an open-source framework focused on usability and flexibility.It is widely used to collect crash information and print variable values.It is very powerful and useful to debug android program. It is customizable and extensible in the simpleton-like ways. Dora是一个专注于易用性和灵活性的开源框架,它被广泛用于收集崩溃信息和打印变量值,对调试Android程序非常强大和有用,傻瓜式的自定义和扩展。
Stars: ✭ 15 (-42.31%)
Mutual labels:  debug
soar-php
SQL optimizer and rewriter. - SQL 优化、重写器(辅助 SQL 调优)。
Stars: ✭ 140 (+438.46%)
Mutual labels:  debug
pdbfetch
Fetch PDB symbols directly from Microsoft's symbol servers
Stars: ✭ 33 (+26.92%)
Mutual labels:  debug
CodeBaseManager
Multi-langage CLI tool to manage your code base
Stars: ✭ 11 (-57.69%)
Mutual labels:  debug
backend debug
Debug support in TYPO3 backend
Stars: ✭ 20 (-23.08%)
Mutual labels:  debug
flutter rough
A Flutter implementation of the rough.js library
Stars: ✭ 77 (+196.15%)
Mutual labels:  flutter-lib
logserver
web log viewer that combines logs from several sources
Stars: ✭ 20 (-23.08%)
Mutual labels:  debug
laravel-ray
Debug with Ray to fix problems faster in Laravel apps
Stars: ✭ 225 (+765.38%)
Mutual labels:  debug
consono
The most correct, informative, appealing and configurable variable inspector for JavaScript
Stars: ✭ 17 (-34.62%)
Mutual labels:  debug
react-native-debug-server-host
React Native Debug server host for iOS
Stars: ✭ 45 (+73.08%)
Mutual labels:  debug
react-native-debug-console
A network and console debug component and modal for react native purely in JavaScript
Stars: ✭ 17 (-34.62%)
Mutual labels:  debug

flutter_debug_drawer

A debug drawer menu for better development. This is an initial release with very few functionalities.

This project is heavily inspired on a similar project for Android (https://github.com/palaima/DebugDrawer)

Screenshot

Getting Started

Include the last version of the library in your pubspec.yaml:

    dependencies:
        flutter_debug_drawer: 0.1.1+1

Now, you can customize your debug drawer adding it to your main application object:

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter debug drawer demo',
      builder: DebugDrawerBuilder.build(modules: [
        PlatformModule(),
        MediaQueryModule(),
      ]),
      home: MyHomePage(),
    );
  }
}

Right now, only PlatformModule and MediaQueryModule are availables. More will come soon.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].