OnboardingStyles constructor

OnboardingStyles({
  1. Color? backgroundColor,
  2. Color? indicatorColor,
  3. TextStyle buttonDoneStyle = const TextStyle(),
  4. TextStyle buttonSkipStyle = const TextStyle(),
  5. TextStyle buttonNextStyle = const TextStyle(),
  6. TextStyle titleStyle = const TextStyle(fontSize: InsetsHelper.i20, fontWeight: FontWeight.w400),
  7. TextStyle subTitleStyle = const TextStyle(fontSize: InsetsHelper.i12, fontWeight: FontWeight.w400),
})

Implementation

OnboardingStyles({
  this.backgroundColor,
  this.indicatorColor,
  this.buttonDoneStyle = const TextStyle(),
  this.buttonSkipStyle = const TextStyle(),
  this.buttonNextStyle = const TextStyle(),
  this.titleStyle = const TextStyle(
    fontSize: InsetsHelper.i20,
    fontWeight: FontWeight.w400,
  ),
  this.subTitleStyle = const TextStyle(
    fontSize: InsetsHelper.i12,
    fontWeight: FontWeight.w400,
  ),
});