Created empty overview page

This commit is contained in:
2025-02-05 14:44:03 +01:00
parent 1b702d04b2
commit ea23a2eaf2
2 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class OverviewPage extends StatelessWidget {
const OverviewPage({super.key});
static const String routeName = '/';
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Recipe Journal'),
),
floatingActionButton: FloatingActionButton.extended(
onPressed: () {},
label: Text('Create New'),
),
);
}
}