ThreeColumnTextBar.deepPurple constructor
Constructs a ThreeColumnTextBar with deepPurple background and effects. The holder backgroundColor is set to deep purple, labelTextColor to yellow, and dataTextColor to white.
Implementation
ThreeColumnTextBar.deepPurple({
String c1LabelText = 'labelText',
String c1DataText = 'dataText',
String c2LabelText = 'labelText',
String c2DataText = 'dataText',
String c3LabelText = 'labelText',
String c3DataText = 'dataText',
double holderHeight = 60.0,
double labelTextFontSize = 10.0,
FontWeight labelTextFontWeight = FontWeight.normal,
String labelTextFontFamily,
double dataTextFontSize = 12.0,
FontWeight dataTextFontWeight = FontWeight.normal,
String dataTextFontFamily,
double holderBorderRadius = 0.0,
bool showHangingDivider = true,
}) : this(
holderHeight: holderHeight,
c1LabelText: c1LabelText,
c1DataText: c1DataText,
c2LabelText: c2LabelText,
c2DataText: c2DataText,
c3LabelText: c3LabelText,
c3DataText: c3DataText,
labelTextFontSize: labelTextFontSize,
labelTextFontWeight: labelTextFontWeight,
labelTextFontFamily: labelTextFontFamily,
dataTextFontSize: dataTextFontSize,
dataTextFontWeight: dataTextFontWeight,
dataTextFontFamily: dataTextFontFamily,
showHangingDivider: showHangingDivider,
holderBorderRadius: holderBorderRadius,
// Pre-configured.
holderColor: Colors.deepPurple,
labelTextColor: Colors.yellow,
dataTextColor: Colors.white,
);