From 0b77956f789db9a6502cefbf507d85aaeb222998 Mon Sep 17 00:00:00 2001 From: gitea Date: Thu, 13 Nov 2025 01:07:01 +0100 Subject: [PATCH] added community screen as placeholder for now 2 --- lib/ui/community/community_screen.dart | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 lib/ui/community/community_screen.dart diff --git a/lib/ui/community/community_screen.dart b/lib/ui/community/community_screen.dart new file mode 100644 index 0000000..6375034 --- /dev/null +++ b/lib/ui/community/community_screen.dart @@ -0,0 +1,39 @@ +import 'package:flutter/material.dart'; + +/// Community screen placeholder. +class CommunityScreen extends StatelessWidget { + const CommunityScreen({super.key}); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Community'), + elevation: 0, + ), + body: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon(Icons.people_outline, size: 64, color: Colors.grey.shade400), + const SizedBox(height: 16), + Text( + 'Community', + style: Theme.of(context).textTheme.titleLarge?.copyWith( + color: Colors.grey.shade700, + ), + ), + const SizedBox(height: 8), + Text( + 'Coming soon...', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Colors.grey.shade600, + ), + ), + ], + ), + ), + ); + } +} +