OnboardingStyles constructor
OnboardingStyles({
- Color? backgroundColor,
- Color? indicatorColor,
- TextStyle buttonDoneStyle = const TextStyle(),
- TextStyle buttonSkipStyle = const TextStyle(),
- TextStyle buttonNextStyle = const TextStyle(),
- TextStyle titleStyle = const TextStyle(fontSize: InsetsHelper.i20, fontWeight: FontWeight.w400),
- 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,
),
});