17 lines
338 B
Dart
17 lines
338 B
Dart
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,
|
|
),
|
|
);
|
|
}
|