Files
Casha/lib/features/add_transaction/widgets/section_label.dart
T
2026-03-25 16:24:23 +03:00

19 lines
456 B
Dart

import 'package:flutter/material.dart';
class SectionLabel extends StatelessWidget {
final String text;
const SectionLabel(this.text, {super.key});
@override
Widget build(BuildContext context) {
return Text(
text,
style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: Theme.of(context).colorScheme.onSurface.withOpacity(0.6),
fontWeight: FontWeight.w600,
letterSpacing: 0.5,
),
);
}
}