aves_mio0.31/lib/widgets/collection/grid/headers/any.dart
2026-07-18 13:39:22 +02:00

26 lines
544 B
Dart

import 'package:flutter/material.dart';
/// Header stub per la CollectionPage.
/// Nel nuovo sistema non esistono più header dinamici.
class CollectionSectionHeader extends StatelessWidget {
final double height;
const CollectionSectionHeader({
super.key,
required this.height,
});
@override
Widget build(BuildContext context) {
return const SizedBox.shrink();
}
static double getPreferredHeight(
BuildContext context,
double maxWidth,
dynamic source,
dynamic sectionKey,
) {
return 0;
}
}