Implemented firebase and onesignal

This commit is contained in:
Abdullah Alassaf
2024-05-23 17:09:10 +03:00
parent f7db91f212
commit cda41ecf74
17 changed files with 312 additions and 64 deletions

View File

@ -11,6 +11,7 @@ class BodySmall extends StatelessWidget {
this.fontSize,
this.fontWeight,
this.textAlign,
this.textOverflow,
});
final String text;
@ -22,6 +23,7 @@ class BodySmall extends StatelessWidget {
final FontWeight? fontWeight;
final TextAlign? textAlign;
final TextOverflow? textOverflow;
@override
Widget build(BuildContext context) => CustomText(
@ -31,5 +33,6 @@ class BodySmall extends StatelessWidget {
fontSize: fontSize,
fontWeight: fontWeight,
textAlign: textAlign,
textOverflow: textOverflow,
);
}