Files
2026-09-15 15:44:13 +07:00

12 lines
319 B
Dart

import 'package:flutter/material.dart';
TextStyle textStyle(
double fontSize,
Color color,
FontWeight fontWeight, {
bool isNeedThrough = false,
}) {
return TextStyle(
color: color, fontSize: fontSize.toDouble(), fontWeight: fontWeight, decoration: isNeedThrough ? TextDecoration.lineThrough : null);
}