bds8xThemeData function

ThemeData bds8xThemeData({
  1. required String fontFamily,
})

Implementation

ThemeData bds8xThemeData({
  required String fontFamily,
}) {
  WowTextStyle.initTextTheme(bds8xTextTheme);
  return ThemeData(
      appBarTheme: bds8xAppBarTheme,
      fontFamily: fontFamily,
      textTheme: bds8xTextTheme,
      textSelectionTheme: bds8xTextSeletionTheme,
      primaryColor: Bds8xColor.blue367E,
      indicatorColor: Bds8xColor.blue367E,
      scaffoldBackgroundColor: Bds8xColor.white,
      inputDecorationTheme: bds8xInputDecorationTheme,
      iconTheme: bds8xIconTheme,
      progressIndicatorTheme: bds8xProgressIndicatorTheme,
      colorScheme: const ColorScheme.light(
        background: Bds8xColor.white,
      ),
      textButtonTheme: bds8xTextButtonTheme);
}