MephistoThemeProvider constructor

const MephistoThemeProvider({
  1. Key? key,
  2. required Widget child,
  3. Color? primaryColor = const Color(0xFF844FC7),
  4. String? fontFamily = 'Roboto',
  5. double? borderRadius = 8,
  6. double? borderWidth = 1,
  7. bool? isDarkTheme = true,
  8. bool? showBottomNavbarLabels = true,
  9. bool? enableBottomNavbarFeedbacks = true,
  10. bool? isFilledBgWidgets = false,
  11. Color? darkFillColor = black,
  12. Color? lightFillColor = Colors.white,
  13. Color? darkLineColor = lineColorDark,
  14. Color? lightLineColor = lineColorLight,
  15. Color? captionTextAndIconColor = Colors.red,
})

Implementation

const MephistoThemeProvider(
    {super.key,
    required this.child,
    this.primaryColor = const Color(0xFF844FC7),
    this.fontFamily = 'Roboto',
    this.borderRadius = 8,
    this.borderWidth = 1,
    this.isDarkTheme = true,
    this.showBottomNavbarLabels = true,
    this.enableBottomNavbarFeedbacks = true,
    this.isFilledBgWidgets = false,
    this.darkFillColor = black,
    this.lightFillColor = Colors.white,
    this.darkLineColor = lineColorDark,
    this.lightLineColor = lineColorLight,
    this.captionTextAndIconColor = Colors.red});