123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- import 'package:flutter/cupertino.dart';
- import 'package:flutter/material.dart';
- import 'package:ftrecruiter/comm/constants/color_constants.dart';
- class ThemeConfig {
- static ThemeData createTheme({
- required Brightness brightness,
- required Color background,
- required Color primaryText,
- Color? secondaryText,
- required Color accentColor,
- Color? divider,
- Color? buttonBackground,
- required Color buttonText,
- Color? cardBackground,
- Color? disabled,
- required Color error,
- }) {
- final baseTextTheme = brightness == Brightness.dark
- ? Typography.blackMountainView
- : Typography.whiteMountainView;
- return ThemeData(
- brightness: brightness,
- buttonColor: buttonBackground,
- canvasColor: background,
- cardColor: background,
- dividerColor: divider,
- dividerTheme: DividerThemeData(
- color: divider,
- space: 1,
- thickness: 1,
- ),
- cardTheme: CardTheme(
- color: cardBackground,
- margin: EdgeInsets.zero,
- clipBehavior: Clip.antiAliasWithSaveLayer,
- ),
- backgroundColor: background,
- primaryColor: accentColor,
- accentColor: accentColor,
- // textSelectionColor: accentColor,
- // textSelectionHandleColor: accentColor,
- // cursorColor: accentColor,
- textSelectionTheme: TextSelectionThemeData(
- selectionColor: accentColor,
- selectionHandleColor: accentColor,
- cursorColor: accentColor,
- ),
- toggleableActiveColor: accentColor,
- appBarTheme: AppBarTheme(
- brightness: brightness,
- color: cardBackground,
- textTheme: TextTheme(
- bodyText1: baseTextTheme.bodyText1!.copyWith(
- color: secondaryText,
- fontSize: 18,
- ),
- ),
- titleTextStyle: TextStyle(
- color: secondaryText,
- fontSize: 18,
- ),
- iconTheme: IconThemeData(
- color: secondaryText,
- ),
- ),
- iconTheme: IconThemeData(
- color: secondaryText,
- size: 16.0,
- ),
- errorColor: error,
- buttonTheme: ButtonThemeData(
- textTheme: ButtonTextTheme.primary,
- colorScheme: ColorScheme(
- brightness: brightness,
- primary: accentColor,
- primaryVariant: accentColor,
- secondary: accentColor,
- secondaryVariant: accentColor,
- surface: background,
- background: background,
- error: error,
- onPrimary: buttonText,
- onSecondary: buttonText,
- onSurface: buttonText,
- onBackground: buttonText,
- onError: buttonText,
- ),
- padding: const EdgeInsets.all(16.0),
- ),
- cupertinoOverrideTheme: CupertinoThemeData(
- brightness: brightness,
- primaryColor: accentColor,
- ),
- inputDecorationTheme: InputDecorationTheme(
- errorStyle: TextStyle(color: error),
- labelStyle: TextStyle(
- fontFamily: 'Rubik',
- fontWeight: FontWeight.w600,
- fontSize: 16.0,
- color: primaryText.withOpacity(0.5),
- ),
- hintStyle: TextStyle(
- color: secondaryText,
- fontSize: 13.0,
- fontWeight: FontWeight.w300,
- ),
- ),
- unselectedWidgetColor: hexToColor('#DADCDD'),
- textTheme: TextTheme(
- headline1: baseTextTheme.headline1!.copyWith(
- color: primaryText,
- fontSize: 34.0,
- fontWeight: FontWeight.bold,
- ),
- headline2: baseTextTheme.headline2!.copyWith(
- color: primaryText,
- fontSize: 22,
- fontWeight: FontWeight.bold,
- ),
- headline3: baseTextTheme.headline3!.copyWith(
- color: secondaryText,
- fontSize: 20,
- fontWeight: FontWeight.w600,
- ),
- headline4: baseTextTheme.headline4!.copyWith(
- color: primaryText,
- fontSize: 18,
- fontWeight: FontWeight.w600,
- ),
- headline5: baseTextTheme.headline5!.copyWith(
- color: primaryText,
- fontSize: 16,
- fontWeight: FontWeight.w700,
- ),
- headline6: baseTextTheme.headline6!.copyWith(
- color: primaryText,
- fontSize: 14,
- fontWeight: FontWeight.w700,
- ),
- bodyText1: baseTextTheme.bodyText1!.copyWith(
- color: secondaryText,
- fontSize: 15,
- ),
- bodyText2: baseTextTheme.bodyText2!.copyWith(
- color: primaryText,
- fontSize: 12,
- fontWeight: FontWeight.w400,
- ),
- button: baseTextTheme.button!.copyWith(
- color: primaryText,
- fontSize: 12.0,
- fontWeight: FontWeight.w700,
- ),
- caption: baseTextTheme.caption!.copyWith(
- color: primaryText,
- fontSize: 11.0,
- fontWeight: FontWeight.w300,
- ),
- overline: baseTextTheme.overline!.copyWith(
- color: secondaryText,
- fontSize: 11.0,
- fontWeight: FontWeight.w500,
- ),
- subtitle1: baseTextTheme.subtitle1!.copyWith(
- color: primaryText,
- fontSize: 16.0,
- fontWeight: FontWeight.w700,
- ),
- subtitle2: baseTextTheme.subtitle2!.copyWith(
- color: secondaryText,
- fontSize: 11.0,
- fontWeight: FontWeight.w500,
- ),
- ),
- );
- }
- static ThemeData get lightTheme => createTheme(
- brightness: Brightness.light,
- background: ColorConstants.lightScaffoldBackgroundColor,
- cardBackground: ColorConstants.secondaryAppColor,
- primaryText: Colors.black,
- secondaryText: Colors.black,
- accentColor: ColorConstants.secondaryAppColor,
- divider: ColorConstants.secondaryAppColor,
- buttonBackground: Colors.black38,
- buttonText: ColorConstants.secondaryAppColor,
- disabled: ColorConstants.secondaryAppColor,
- error: Colors.red,
- );
- static ThemeData get darkTheme => createTheme(
- brightness: Brightness.dark,
- background: ColorConstants.darkScaffoldBackgroundColor,
- cardBackground: ColorConstants.secondaryDarkAppColor,
- primaryText: Colors.white,
- secondaryText: Colors.white,
- accentColor: ColorConstants.secondaryDarkAppColor,
- divider: Colors.black45,
- buttonBackground: Colors.white,
- buttonText: ColorConstants.secondaryDarkAppColor,
- disabled: ColorConstants.secondaryDarkAppColor,
- error: Colors.red,
- );
- }
|