Files
sendico/frontend/pweb/lib/pages/payment_methods/widgets/section_title.dart
2025-12-24 18:17:35 +01:00

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