VerticalSpace static method

TextSpan VerticalSpace(
  1. double space
)

在富文本 spans 中插入垂直方向的文字间距

Insert vertical spacing in rich text spans

Implementation

static TextSpan VerticalSpace(double space) {
  return TextSpan(
      text: '\n \n',
      style: TextStyle(
        fontSize: 1,
        height: space,
      ));
}