28 lines
729 B
Dart
28 lines
729 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class GroupContent extends StatelessWidget {
|
|
const GroupContent({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(Icons.group, size: 64, color: Colors.blue),
|
|
SizedBox(height: 16),
|
|
Text(
|
|
'Chat de Groupe',
|
|
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
|
|
),
|
|
SizedBox(height: 8),
|
|
Text(
|
|
'Communiquez avec vos compagnons de voyage',
|
|
style: TextStyle(fontSize: 16, color: Colors.grey),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|