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, ), ); } }