FluoAnswerStyle constructor
const
FluoAnswerStyle({
- EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 20, vertical: 15),
- Color backgroundColor = const Color(0x09000000),
- Color? backgroundHighlightColor = const Color(0x12000000),
- Color backgroundSelectedColor = const Color(0xFFFFFF8D),
- Color borderColor = Colors.transparent,
- Color? borderHighlightColor = Colors.transparent,
- Color borderSelectedColor = Colors.black,
- EdgeInsets iconContainerPadding = const EdgeInsets.all(6),
- Color iconContainerColor = Colors.white,
- TextStyle? titleTextStyle,
Implementation
const FluoAnswerStyle({
this.padding = const EdgeInsets.symmetric(
horizontal: 20,
vertical: 15,
),
this.backgroundColor = const Color(0x09000000),
this.backgroundHighlightColor = const Color(0x12000000),
this.backgroundSelectedColor = const Color(0xFFFFFF8D),
this.borderColor = Colors.transparent,
this.borderHighlightColor = Colors.transparent,
this.borderSelectedColor = Colors.black,
this.iconContainerPadding = const EdgeInsets.all(6),
this.iconContainerColor = Colors.white,
this.titleTextStyle,
});