美文网首页
JUIKit---JText

JUIKit---JText

作者: Leo_L | 来源:发表于2020-07-29 16:29 被阅读0次

flutter 常用控件,Text--------JText。

import 'package:flutter/widgets.dart';

class JText extends Text {
  JText(String data,
      [Color color,
      double fontSize,
      FontWeight fontWeight,
      StrutStyle strutStyle,
      TextAlign textAlign,
      TextOverflow overflow,
      TextDirection textDirection,
      Locale locale,
      bool softWrap,
      int maxLines,
      String semanticsLabel,
      TextWidthBasis textWidthBasis])
      : super(
          data,
          style: TextStyle(
              color: color, fontSize: fontSize, fontWeight: fontWeight),
          strutStyle: strutStyle,
          textAlign: textAlign,
          overflow: overflow,
          textDirection: textDirection,
          locale: locale,
          softWrap: softWrap,
          maxLines: maxLines,
          semanticsLabel: semanticsLabel,
          textWidthBasis: textWidthBasis,
        );
}

相关文章

网友评论

      本文标题:JUIKit---JText

      本文链接:https://www.haomeiwen.com/subject/cuhhrktx.html