15 lines
337 B
Dart
15 lines
337 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class StatistiqueManageWidget extends StatelessWidget {
|
|
const StatistiqueManageWidget({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Text(
|
|
'Statistiques',
|
|
style: Theme.of(context).textTheme.headlineMedium,
|
|
),
|
|
);
|
|
}
|
|
} |