text function
Implementation
Widget text(
AppModel app,
BuildContext context,
String data, {
TextAlign? textAlign,
int? maxLines,
bool? softWrap,
}) {
return StyleRegistry.registry()
.styleWithApp(app)
.frontEndStyle()
.textStyle()
.text(
app,
context,
data,
textAlign: textAlign,
maxLines: maxLines,
softWrap: softWrap,
);
}