add extension on Text

null_safety
小赖 4 years ago
parent 80d919f5df
commit e9bf1faebf

@ -0,0 +1,25 @@
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
extension TextExtension on Text {
Text get bold {
return Text(
this.data,
style: this.style.copyWith(fontWeight: FontWeight.bold),
);
}
Text size(double size) {
return Text(
this.data,
style: this.style.copyWith(fontSize: size.w),
);
}
Text color(Color color) {
return Text(
this.data,
style: this.style.copyWith(color: color),
);
}
}
Loading…
Cancel
Save