debug_bricks_theme_info 0.0.3 debug_bricks_theme_info: ^0.0.3 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 #
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(),
);
}
}