developer_tools 0.0.6
developer_tools: ^0.0.6 copied to clipboard
A set of runtime tools for developers to use in their projects.
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(),
);
Related packages #
- developer_tools_core – Core abstractions
- developer_tools_riverpod – Riverpod integration
- developer_tools_get – GetX integration