feat: add bottom navigation shell with four tabs

Introduces AppShell with an IndexedStack-backed NavigationBar (Today,
History, Insights, Settings). Stub screens added for Calendar, Insights,
and Settings; app.dart now routes to AppShell instead of LogMoodScreen directly.
This commit is contained in:
2026-04-26 14:21:12 +10:00
parent 344182c30c
commit fefb61ffae
5 changed files with 98 additions and 3 deletions
@@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
class CalendarScreen extends StatelessWidget {
const CalendarScreen({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(child: Text('History coming soon')),
);
}
}