alignTextBottom method

WidgetSpan alignTextBottom({
  1. TextBaseline baseline = TextBaseline.alphabetic,
})

Aligns the bottom of the element with the bottom of the parent element's font.

Matches Bootstrap's .align-text-bottom class.

Implementation

WidgetSpan alignTextBottom({TextBaseline baseline = TextBaseline.alphabetic}) => WidgetSpan(
      alignment: PlaceholderAlignment.belowBaseline,
      baseline: baseline,
      child: this,
    );