| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- import 'package:flutter/material.dart';
- import 'package:tdesign_flutter/tdesign_flutter.dart';
- import 'app_colors.dart';
- class AppTheme {
- AppTheme._();
- /// TDesign 主题数据,注入自定义品牌色和字体
- static TDThemeData get tdThemeData {
- final base = TDThemeData.defaultData();
- return base.copyWithTDThemeData(
- 'tbossCustom',
- colorMap: <String, Color>{
- 'brandNormalColor': AppColors.primary,
- 'brandClickColor': AppColors.primaryActive,
- 'successNormalColor': AppColors.success,
- 'warningNormalColor': AppColors.warning,
- 'errorNormalColor': AppColors.danger,
- 'textColorPrimary': AppColors.textPrimary,
- 'textColorSecondary': AppColors.textSecondary,
- 'textColorPlaceholder': AppColors.textPlaceholder,
- 'bgColorPage': AppColors.bgPage,
- 'bgColorContainer': AppColors.bgCard,
- 'borderColor': AppColors.border,
- },
- fontMap: <String, Font>{
- 'fontBodyMedium': Font(size: AppFontSizes.body.toInt(), lineHeight: 22),
- 'fontBodySmall': Font(
- size: AppFontSizes.caption.toInt(),
- lineHeight: 20,
- ),
- 'fontTitleMedium': Font(
- size: AppFontSizes.subtitle.toInt(),
- lineHeight: 24,
- ),
- 'fontTitleLarge': Font(
- size: AppFontSizes.title.toInt(),
- lineHeight: 26,
- ),
- },
- );
- }
- static ThemeData get light {
- final colorScheme = ColorScheme.fromSeed(
- seedColor: AppColors.primary,
- brightness: Brightness.light,
- ).copyWith(surface: AppColors.bgPage);
- return ThemeData(
- useMaterial3: true,
- colorScheme: colorScheme,
- canvasColor: AppColors.bgPage,
- scaffoldBackgroundColor: AppColors.bgPage,
- appBarTheme: const AppBarTheme(
- backgroundColor: AppColors.primary,
- foregroundColor: Colors.white,
- elevation: 0,
- centerTitle: false,
- titleTextStyle: TextStyle(
- fontSize: AppFontSizes.title,
- fontWeight: FontWeight.w600,
- color: Colors.white,
- ),
- ),
- cardTheme: CardThemeData(
- color: AppColors.bgCard,
- elevation: 1,
- shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8)),
- ),
- elevatedButtonTheme: ElevatedButtonThemeData(
- style: ElevatedButton.styleFrom(
- backgroundColor: AppColors.primary,
- foregroundColor: Colors.white,
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(22),
- ),
- minimumSize: const Size(double.infinity, 44),
- textStyle: const TextStyle(
- fontSize: AppFontSizes.body,
- fontWeight: FontWeight.w600,
- ),
- ),
- ),
- outlinedButtonTheme: OutlinedButtonThemeData(
- style: OutlinedButton.styleFrom(
- foregroundColor: AppColors.textPrimary,
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(22),
- ),
- minimumSize: const Size(double.infinity, 44),
- side: const BorderSide(color: AppColors.border),
- textStyle: const TextStyle(fontSize: AppFontSizes.body),
- ),
- ),
- dividerColor: AppColors.border,
- dividerTheme: const DividerThemeData(
- color: AppColors.border,
- thickness: 1,
- ),
- );
- }
- }
|