mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 18:16:21 +00:00
initialized Devices Page
This commit is contained in:
@ -9,6 +9,7 @@ class BodySmall extends StatelessWidget {
|
||||
this.style,
|
||||
this.fontColor,
|
||||
this.fontSize,
|
||||
this.fontWeight,
|
||||
});
|
||||
|
||||
final String text;
|
||||
@ -17,6 +18,7 @@ class BodySmall extends StatelessWidget {
|
||||
final Color? fontColor;
|
||||
|
||||
final double? fontSize;
|
||||
final FontWeight? fontWeight;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => CustomText(
|
||||
@ -24,5 +26,6 @@ class BodySmall extends StatelessWidget {
|
||||
style: style ?? context.bodySmall,
|
||||
fontColor: fontColor,
|
||||
fontSize: fontSize,
|
||||
fontWeight: fontWeight,
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user