import 'package:flutter/material.dart'; class SectionTitle extends StatelessWidget { final String title; const SectionTitle(this.title, {super.key}); @override Widget build(BuildContext context) => Text( title, style: Theme.of(context).textTheme.titleMedium?.copyWith( fontWeight: FontWeight.w600, ), ); }