added new pages

This commit is contained in:
marcoabat
2023-08-05 14:07:21 +02:00
parent c5c00b999e
commit 77e1fa8244
5 changed files with 36 additions and 0 deletions

View File

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