mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 01:35:23 +00:00
fetch groups
This commit is contained in:
@ -10,6 +10,7 @@ class BodySmall extends StatelessWidget {
|
||||
this.fontColor,
|
||||
this.fontSize,
|
||||
this.fontWeight,
|
||||
this.textAlign,
|
||||
});
|
||||
|
||||
final String text;
|
||||
@ -20,6 +21,8 @@ class BodySmall extends StatelessWidget {
|
||||
final double? fontSize;
|
||||
final FontWeight? fontWeight;
|
||||
|
||||
final TextAlign? textAlign;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => CustomText(
|
||||
text,
|
||||
@ -27,5 +30,6 @@ class BodySmall extends StatelessWidget {
|
||||
fontColor: fontColor,
|
||||
fontSize: fontSize,
|
||||
fontWeight: fontWeight,
|
||||
textAlign: textAlign,
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user