34 lines
884 B
Dart
34 lines
884 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class GroupPage extends StatelessWidget {
|
|
const GroupPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
color: const Color(0xFF121212),
|
|
child: const Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(Icons.group, size: 100, color: Color(0xFF6366F1)),
|
|
SizedBox(height: 20),
|
|
Text(
|
|
'Group',
|
|
style: TextStyle(
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.white,
|
|
),
|
|
),
|
|
SizedBox(height: 10),
|
|
Text(
|
|
'Manage your listening group',
|
|
style: TextStyle(color: Colors.grey),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|