This commit is contained in:
2025-09-26 18:48:14 +07:00
parent 382a0e7909
commit 30ed6b39b5
85 changed files with 20722 additions and 112 deletions

19
lib/core/theme/theme.dart Normal file
View File

@@ -0,0 +1,19 @@
// 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';