// Version: 1.0.0 | Created: 2026-04-01 // Spaces screen stub — Phase 2 will implement full spaces navigation. import 'package:flutter/material.dart'; class SpacesScreen extends StatelessWidget { const SpacesScreen({super.key, this.embedded = false}); final bool embedded; @override Widget build(BuildContext context) { final body = Center( child: Padding( padding: const EdgeInsets.all(32), child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon( Icons.dashboard_outlined, size: 64, color: Theme.of(context).colorScheme.onSurface.withAlpha(77), ), const SizedBox(height: 16), Text( 'Spaces', style: Theme.of(context).textTheme.titleMedium?.copyWith( color: Theme.of(context).colorScheme.onSurface.withAlpha(153), ), ), const SizedBox(height: 8), Text( 'Space navigation is coming in Phase 2.', textAlign: TextAlign.center, style: Theme.of(context).textTheme.bodySmall?.copyWith( color: Theme.of(context).colorScheme.onSurface.withAlpha(102), ), ), ], ), ), ); if (embedded) return body; return Scaffold( appBar: AppBar(title: const Text('Spaces')), body: body, ); } }