developer_tools

A set of runtime tools for developers to use in their Flutter projects. Provides a debug overlay with a floating button and configurable actions.

Installation

dependencies:
  developer_tools: ^0.0.1

Usage

Wrap your app with DeveloperTools.builder():

return MaterialApp(
  builder: DeveloperTools.builder(
    entries: [
      DeveloperToolEntry(
        title: 'Show toast',
        onTap: (context) {
          // run any debug action here
        },
      ),
    ],
  ),
  home: const HomePage(),
);

Libraries

developer_tools