mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-27 00:14:55 +00:00
Implemented firebase and onesignal
This commit is contained in:
@ -9,6 +9,7 @@ class CustomText extends StatelessWidget {
|
||||
this.minLines,
|
||||
this.maxLines,
|
||||
this.textDirection,
|
||||
this.textOverflow,
|
||||
this.fontSize,
|
||||
this.fontColor,
|
||||
this.fontWeight});
|
||||
@ -20,6 +21,7 @@ class CustomText extends StatelessWidget {
|
||||
final int? minLines;
|
||||
final int? maxLines;
|
||||
final TextDirection? textDirection;
|
||||
final TextOverflow? textOverflow;
|
||||
|
||||
final double? fontSize;
|
||||
final Color? fontColor;
|
||||
@ -36,6 +38,7 @@ class CustomText extends StatelessWidget {
|
||||
textAlign: textAlign,
|
||||
// onTap: onTap,
|
||||
// minLines: minLines,
|
||||
overflow: textOverflow,
|
||||
maxLines: maxLines,
|
||||
textDirection: textDirection,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user