mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 01:35:23 +00:00
29 lines
646 B
Dart
29 lines
646 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:syncrow_app/features/shared_widgets/text_widgets/custom_text_widget.dart';
|
|
import 'package:syncrow_app/utils/context_extension.dart';
|
|
|
|
class BodySmall extends StatelessWidget {
|
|
const BodySmall({
|
|
required this.text,
|
|
super.key,
|
|
this.style,
|
|
this.fontColor,
|
|
this.fontSize,
|
|
});
|
|
|
|
final String text;
|
|
final TextStyle? style;
|
|
|
|
final Color? fontColor;
|
|
|
|
final double? fontSize;
|
|
|
|
@override
|
|
Widget build(BuildContext context) => CustomText(
|
|
text,
|
|
style: style ?? context.bodySmall,
|
|
fontColor: fontColor,
|
|
fontSize: fontSize,
|
|
);
|
|
}
|