FluoRatingScreenStyle constructor

const FluoRatingScreenStyle({
  1. double contentWidth = 320,
  2. Color backgroundColor = Colors.white,
  3. EdgeInsets padding = const EdgeInsets.only(left: 20, right: 20, bottom: 40),
  4. double verticalSpacing = 30,
  5. TextStyle? titleTextStyle,
  6. TextStyle? ratingTitleTextStyle,
  7. TextStyle? ratingSubtitleTextStyle,
  8. TextStyle? userNameTextStyle,
  9. TextStyle? userReviewTextStyle,
  10. Color laurelWreathColor = const Color(0xFFFF9408),
  11. double laurelWreathHeight = 65,
  12. Color starsColor = const Color(0xFFFF9408),
  13. Color reviewBackgroundColor = const Color(0x09000000),
  14. ButtonStyle? continueButtonStyle,
})

Implementation

const FluoRatingScreenStyle({
  this.contentWidth = 320,
  this.backgroundColor = Colors.white,
  this.padding = const EdgeInsets.only(
    left: 20,
    right: 20,
    bottom: 40,
  ),
  this.verticalSpacing = 30,
  this.titleTextStyle,
  this.ratingTitleTextStyle,
  this.ratingSubtitleTextStyle,
  this.userNameTextStyle,
  this.userReviewTextStyle,
  this.laurelWreathColor = const Color(0xFFFF9408),
  this.laurelWreathHeight = 65,
  this.starsColor = const Color(0xFFFF9408),
  this.reviewBackgroundColor = const Color(0x09000000),
  this.continueButtonStyle,
});