mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
44 lines
904 B
Dart
44 lines
904 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class CustomText extends StatelessWidget {
|
|
const CustomText(this.text,
|
|
{super.key,
|
|
this.style,
|
|
this.textAlign,
|
|
this.onTap,
|
|
this.minLines,
|
|
this.maxLines,
|
|
this.textDirection,
|
|
this.fontSize,
|
|
this.fontColor,
|
|
this.fontWeight});
|
|
|
|
final String text;
|
|
final TextStyle? style;
|
|
final TextAlign? textAlign;
|
|
final Function()? onTap;
|
|
final int? minLines;
|
|
final int? maxLines;
|
|
final TextDirection? textDirection;
|
|
|
|
final double? fontSize;
|
|
final Color? fontColor;
|
|
|
|
final FontWeight? fontWeight;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
//was SelectableText
|
|
return Text(
|
|
softWrap: true,
|
|
text,
|
|
style: style,
|
|
textAlign: textAlign,
|
|
// onTap: onTap,
|
|
// minLines: minLines,
|
|
maxLines: maxLines,
|
|
textDirection: textDirection,
|
|
);
|
|
}
|
|
}
|