Files

17 lines
405 B
Dart
Raw Permalink Normal View History

2026-02-07 15:57:09 +07:00
import 'package:flutter/material.dart';
Widget labelSpan({required String title, required BuildContext context}) {
final _theme = Theme.of(context);
return Text.rich(
TextSpan(text: title, children: [
TextSpan(
text: '*',
style: TextStyle(color: Colors.red),
)
]),
style: _theme.textTheme.titleSmall?.copyWith(
fontWeight: FontWeight.w500,
),
);
}