my_txt.dart 660 B

12345678910111213141516171819202122232425262728
  1. import 'package:flutter/material.dart';
  2. import 'package:news_app/constant/size_res.dart';
  3. /// @author: bo.zeng
  4. /// @email: cnhbwds@gmail.com
  5. /// @date: 2025 2025/4/9 16:00
  6. /// @description:
  7. Widget myTxt({
  8. required String text,
  9. double? fontSize,
  10. Color? color,
  11. FontWeight? fontWeight,
  12. TextAlign? textAlign,
  13. TextOverflow? textOverflow,
  14. int? maxLines,
  15. TextDecoration? decoration,
  16. }) {
  17. return Text(
  18. text,
  19. maxLines: maxLines,
  20. overflow: textOverflow ?? TextOverflow.ellipsis,
  21. style: TextStyle(
  22. color: color ?? Colors.black,
  23. fontSize: fontSize ?? sizeTxt,
  24. fontWeight: fontWeight ?? FontWeight.normal,
  25. ),
  26. );
  27. }