ThreeColumnTextBar.transparent constructor

ThreeColumnTextBar.transparent({double holderHeight: 60.0, double holderBorderRadius: 0.0, String c1LabelText: 'labelText', String c1DataText: 'dataText', String c2LabelText: 'labelText', String c2DataText: 'dataText', String c3LabelText: 'labelText', String c3DataText: 'dataText', double labelTextFontSize: 10.0, FontWeight labelTextFontWeight: FontWeight.normal, String labelTextFontFamily, double dataTextFontSize: 12.0, FontWeight dataTextFontWeight: FontWeight.normal, String dataTextFontFamily, bool showHangingDivider: true })

Constructs a ThreeColumnTextBar with transparent background and effects. The holder backgroundColor is set to transparent, labelTextColor to deep purple accent, dataTextColor to black, and dividerColor to deep purple.

Implementation

ThreeColumnTextBar.transparent({
  double holderHeight = 60.0,
  double holderBorderRadius = 0.0,
  String c1LabelText = 'labelText',
  String c1DataText = 'dataText',
  String c2LabelText = 'labelText',
  String c2DataText = 'dataText',
  String c3LabelText = 'labelText',
  String c3DataText = 'dataText',
  double labelTextFontSize = 10.0,
  FontWeight labelTextFontWeight = FontWeight.normal,
  String labelTextFontFamily,
  double dataTextFontSize = 12.0,
  FontWeight dataTextFontWeight = FontWeight.normal,
  String dataTextFontFamily,
  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,

        // Pre-configured.
        holderColor: Colors.transparent,
        labelTextColor: Colors.deepPurpleAccent,
        dataTextColor: Colors.black,
        hangingDividerColor: Colors.deepPurple,
      );