FluoQuestionScreenStyle constructor

const FluoQuestionScreenStyle({
  1. Color backgroundColor = Colors.white,
  2. EdgeInsets padding = const EdgeInsets.only(left: 20, right: 20, bottom: 40),
  3. TextStyle? titleTextStyle,
  4. MainAxisAlignment answersAxisAlignment = MainAxisAlignment.end,
  5. ButtonStyle? continueButtonStyle,
})

Implementation

const FluoQuestionScreenStyle({
  this.backgroundColor = Colors.white,
  this.padding = const EdgeInsets.only(
    left: 20,
    right: 20,
    bottom: 40,
  ),
  this.titleTextStyle,
  this.answersAxisAlignment = MainAxisAlignment.end,
  this.continueButtonStyle,
});