mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-27 10:14:54 +00:00
Switches updated
This commit is contained in:
@ -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,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user