mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
22 lines
407 B
Dart
22 lines
407 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class TableHeader extends StatelessWidget {
|
|
final String title;
|
|
|
|
const TableHeader({
|
|
super.key,
|
|
required this.title,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: Text(
|
|
title,
|
|
style: const TextStyle(fontWeight: FontWeight.bold),
|
|
),
|
|
);
|
|
}
|
|
}
|