material_dev_tools 0.0.6 copy "material_dev_tools: ^0.0.6" to clipboard
material_dev_tools: ^0.0.6 copied to clipboard

Enhances the development workflow by offering real-time previews of Material components

Material Dev Tools #

Material Dev Tools is a Flutter package designed to enhance your development workflow by offering real-time previews of Material Design components. This tool helps developers inspect, tweak, and test UI elements efficiently, making it easier to build beautiful and consistent Material Design applications.

✨ Features #

  • πŸ” Live Previews – Instantly see changes to Material components.
  • 🎨 Theme Customization – Adjust themes dynamically.
  • πŸ›  Component Inspector – Debug UI elements with ease.
  • ⚑ Hot Reload Support – Seamlessly integrate into your Flutter workflow.

πŸš€ Installation #

Add material_dev_tools to your pubspec.yaml:

dev_dependencies:
  material_dev_tools: latest_version

Then run:

flutter pub get

πŸ“Œ Usage #

Ensure your app is wrapped with MaterialApp, setting theme and darkTheme, and using Scaffold in your UI:

import 'package:flutter/material.dart';

void main() {
  runApp(
    MaterialApp(
      theme: ThemeData.light(),
      darkTheme: ThemeData.dark(),
      home: Scaffold(
        appBar: AppBar(title: Text('Material Dev Tools')),
        body: Center(child: Text('Hello, world!')),
      ),
    ),
  );
}

πŸ“– Documentation #

Open Dart DevTools, and you'll see live previews of Material components with your theming applied. No extra setup required!

🎯 Contributing #

Contributions are welcome! Feel free to open issues and pull requests.

πŸ“œ License #

This project is licensed under the MIT License.

2
likes
50
points
62
downloads

Publisher

unverified uploader

Weekly Downloads

Enhances the development workflow by offering real-time previews of Material components

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

devtools_app_shared, devtools_extensions, flutter, flutter_localization, flutter_screenutil, get_it, intl, vm_service, widgetbook, widgetbook_annotation

More

Packages that depend on material_dev_tools