Add profile in parameters, initialized page map, group, count.
This commit is contained in:
13
lib/components/group/group_content.dart
Normal file
13
lib/components/group/group_content.dart
Normal 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')),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user