-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed map icons, adding locally, added ProfilePage for debugging sign…
… in logic
- Loading branch information
1 parent
6d64353
commit 0492baf
Showing
8 changed files
with
69 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// ignore_for_file: slash_for_doc_comments | ||
|
||
import 'package:flutter/material.dart'; | ||
import 'package:lost_found_steelhacks/services/auth.dart'; | ||
|
||
/** | ||
* UI to display the user's profile. | ||
* Currently just is a text box for debugging purposes | ||
*/ | ||
class ProfilePage extends StatefulWidget { | ||
const ProfilePage({super.key}); | ||
|
||
@override | ||
ProfilePageState createState() => ProfilePageState(); | ||
} | ||
|
||
class ProfilePageState extends State<ProfilePage> { | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Center(child: Text(AuthService.instance.user?.firstName ?? "null")); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters