19 lines
487 B
Dart
19 lines
487 B
Dart
// Theme system barrel file for easy imports
|
|
//
|
|
// This file exports all theme-related components for the Material 3 design system.
|
|
// Import this file to get access to all theme utilities, colors, typography, and spacing.
|
|
|
|
// Core theme configuration
|
|
export 'app_theme.dart';
|
|
|
|
// Color system
|
|
export 'app_colors.dart';
|
|
|
|
// Typography system
|
|
export 'app_typography.dart';
|
|
|
|
// Spacing and layout system
|
|
export 'app_spacing.dart';
|
|
|
|
// Theme widgets
|
|
export 'widgets/theme_mode_switch.dart'; |