33 lines
740 B
Dart
33 lines
740 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
// Szekció fejléc (pl. "Korábbi útvonalak")
|
|
class SectionHeader extends StatelessWidget {
|
|
final String title;
|
|
final Widget? trailing;
|
|
|
|
const SectionHeader({
|
|
required this.title,
|
|
this.trailing,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsets.fromLTRB(16, 8, 8, 4),
|
|
child: Row(children: [
|
|
Text(
|
|
title.toUpperCase(),
|
|
style: TextStyle(
|
|
fontSize: 11,
|
|
fontWeight: FontWeight.w600,
|
|
color: Colors.grey.shade500,
|
|
letterSpacing: 0.6,
|
|
),
|
|
),
|
|
const Spacer(),
|
|
if (trailing != null) trailing!,
|
|
]),
|
|
);
|
|
}
|
|
}
|