FluoFeaturesScreenStyle constructor

const FluoFeaturesScreenStyle({
  1. double contentWidth = 320,
  2. Color backgroundColor = Colors.white,
  3. EdgeInsets padding = const EdgeInsets.only(left: 20, right: 20, bottom: 40),
  4. TextStyle? titleTextStyle,
  5. TextStyle? featureTextStyle,
  6. double checkmarkSize = 30,
  7. Color checkmarkColor = Colors.black,
  8. Color checkmarkBackgroundColor = const Color(0xfff0f0f0),
  9. ButtonStyle? continueButtonStyle,
})

Implementation

const FluoFeaturesScreenStyle({
  this.contentWidth = 320,
  this.backgroundColor = Colors.white,
  this.padding = const EdgeInsets.only(
    left: 20,
    right: 20,
    bottom: 40,
  ),
  this.titleTextStyle,
  this.featureTextStyle,
  this.checkmarkSize = 30,
  this.checkmarkColor = Colors.black,
  this.checkmarkBackgroundColor = const Color(0xfff0f0f0),
  this.continueButtonStyle,
});