debug_bricks_theme_info 1.0.0 copy "debug_bricks_theme_info: ^1.0.0" to clipboard
debug_bricks_theme_info: ^1.0.0 copied to clipboard

Theme Info debug bricks

UI components which displays information about the current Material 3 theme.

Getting started #

Add to your pubspec.yaml:

dependencies:
  debug_bricks_theme_info: <last_version>

Usage #

ThemeColorInfoBrick

import 'package:debug_bricks_theme_info/debug_bricks_theme_info.dart';

class DebugScreen extends StatelessWidget {
  const DebugScreen({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return SingleChildScrollView(
      child: ThemeColorInfoBrick(),
    );
  }
}