1234567891011121314151617181920212223242526272829 |
-
- import 'package:flutter/widgets.dart';
-
- class Bold extends StatelessWidget {
- String text;
- double fontSize;
- Color? color;
- double? letterSpacing;
- TextAlign? textAlign;
-
- Bold({Key? key,
- required this.text,
- required this.fontSize,
- this.color,
- this.letterSpacing,
- this.textAlign,
- }) : super(key: key);
-
- @override
- Widget build(BuildContext context) {
- var textStyle = TextStyle(color: color, fontSize: fontSize, fontWeight: FontWeight.bold, letterSpacing: letterSpacing);
-
- return Text(
- text,
- style: textStyle,
- textAlign: textAlign,
- );
- }
- }
|