Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianLa0616 committed Dec 4, 2023
1 parent 81c8d82 commit 37b2fa5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions game/lib/profile/profile_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import 'package:flutter/material.dart';

class ProfilePage extends StatefulWidget {
const ProfilePage({Key? key}) : super(key: key);

@override
State<ProfilePage> createState() => _ProfilePageState();
}

class _ProfilePageState extends State<ProfilePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
children: [
Text("Name"),
Text("username"),
Text("Points"),
Text("Achievements"),
Text("Completed")
],
));
}
}

0 comments on commit 37b2fa5

Please sign in to comment.