refactoring

This commit is contained in:
SomnusVeritas
2023-11-08 11:41:35 +01:00
parent 11a6469544
commit 1073dbbe41
4 changed files with 13 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
class TodoDetailPage extends StatelessWidget {
const TodoDetailPage({super.key});
static const routeName = '/detail';
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}