12 lines
319 B
Dart
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);
|
|
}
|