From 4c5ba92b066560e9de76ac14a491d789453617d8 Mon Sep 17 00:00:00 2001 From: Connor Frank Date: Mon, 1 Apr 2024 17:43:00 -0400 Subject: Initial Commit --- lib/main.dart | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/main.dart (limited to 'lib/main.dart') diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..0d6a66c --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,18 @@ +import 'package:flutter/material.dart'; +import 'package:mini_golf/main_menu.dart'; + +void main() { + runApp(const MiniGolfScoreApp()); +} + +class MiniGolfScoreApp extends StatelessWidget { + const MiniGolfScoreApp({super.key}); + + @override + Widget build(BuildContext context) { + return const MaterialApp( + title: 'Mini Golf Score App', + home: MainMenu(), + ); + } +} -- cgit v1.2.3