From 37b2fa55aa261fb0713f524f14bbaaf6ab9710ea Mon Sep 17 00:00:00 2001 From: Brian La Date: Sun, 3 Dec 2023 21:45:56 -0500 Subject: [PATCH] initial commit --- game/lib/profile/profile_page.dart | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 game/lib/profile/profile_page.dart diff --git a/game/lib/profile/profile_page.dart b/game/lib/profile/profile_page.dart new file mode 100644 index 00000000..f7dda925 --- /dev/null +++ b/game/lib/profile/profile_page.dart @@ -0,0 +1,24 @@ +import 'package:flutter/material.dart'; + +class ProfilePage extends StatefulWidget { + const ProfilePage({Key? key}) : super(key: key); + + @override + State createState() => _ProfilePageState(); +} + +class _ProfilePageState extends State { + @override + Widget build(BuildContext context) { + return Scaffold( + body: Column( + children: [ + Text("Name"), + Text("username"), + Text("Points"), + Text("Achievements"), + Text("Completed") + ], + )); + } +}