simple navigation for creating recipe

This commit is contained in:
2025-02-06 14:13:24 +01:00
parent ea23a2eaf2
commit 590666744f
6 changed files with 91 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class StepsPage extends StatelessWidget {
const StepsPage({super.key});
@override
Widget build(BuildContext context) {
return Center(child: const Text('Steps'));
}
}