Switches updated

This commit is contained in:
Mohammad Salameh
2024-02-27 10:13:58 +03:00
parent abe7072f2d
commit 4c27cce519
14 changed files with 89 additions and 74 deletions

View File

@ -12,6 +12,7 @@ class BodyLarge extends StatelessWidget {
this.height,
this.fontWeight,
this.fontColor,
this.fontSize,
});
final String text;
@ -25,6 +26,8 @@ class BodyLarge extends StatelessWidget {
final Color? fontColor;
final double? fontSize;
@override
Widget build(BuildContext context) => CustomText(
text,
@ -34,6 +37,7 @@ class BodyLarge extends StatelessWidget {
height: height ?? 1.5,
fontWeight: fontWeight,
color: fontColor,
fontSize: fontSize,
),
);
}