checkpoint

This commit is contained in:
John Smith 2023-01-09 22:50:34 -05:00
parent c22d6fcff8
commit 8c22bf8cc0
24 changed files with 673 additions and 56 deletions

13
lib/pages/index.dart Normal file
View file

@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
class IndexPage extends StatelessWidget {
const IndexPage({super.key});
static const path = '/';
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(child: Text("Index Page")),
);
}
}