navigation to createTodoPage

This commit is contained in:
SomnusVeritas
2023-11-08 10:53:21 +01:00
parent b7ab47c1ec
commit 72ab307b42
3 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
class CreateTodoPage extends StatefulWidget {
const CreateTodoPage({super.key});
static const routeName = '/create';
@override
State<CreateTodoPage> createState() => _CreateTodoPageState();
}
class _CreateTodoPageState extends State<CreateTodoPage> {
@override
Widget build(BuildContext context) {
return const Scaffold();
}
}