FollyCell.textHeaderCenter constructor

FollyCell.textHeaderCenter(
  1. String text, {
  2. EdgeInsets padding = EdgeInsets.zero,
  3. Alignment align = Alignment.bottomCenter,
  4. Color color = Colors.transparent,
  5. TextAlign textAlign = TextAlign.center,
  6. TextStyle style = const TextStyle(fontWeight: FontWeight.bold),
  7. bool selectable = false,
  8. Key? key,
})

Implementation

FollyCell.textHeaderCenter(
  String text, {
  EdgeInsets padding = EdgeInsets.zero,
  Alignment align = Alignment.bottomCenter,
  Color color = Colors.transparent,
  TextAlign textAlign = TextAlign.center,
  TextStyle style = const TextStyle(
    fontWeight: FontWeight.bold,
  ),
  bool selectable = false,
  Key? key,
}) : this._text(
        text,
        padding: padding,
        align: align,
        color: color,
        textAlign: textAlign,
        style: style,
        selectable: selectable,
        key: key,
      );