Add profile in parameters, initialized page map, group, count.

This commit is contained in:
Van Leemput Dayron
2025-10-01 12:21:00 +02:00
parent 3f7ca54a70
commit ad9393a925
9 changed files with 377 additions and 42 deletions

View File

@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
class GroupContent extends StatelessWidget {
const GroupContent({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Group Page')),
body: const Center(child: Text('This is the Group Page')),
);
}
}