Skip to content

Commit

Permalink
add UI for setting up profile (needs tweaking)
Browse files Browse the repository at this point in the history
  • Loading branch information
youngbryanyu committed Mar 6, 2024
1 parent 0bde3a2 commit 39c97fa
Show file tree
Hide file tree
Showing 5 changed files with 530 additions and 38 deletions.
34 changes: 32 additions & 2 deletions frontend/lib/common/styles/themes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,25 @@ final ThemeData lightTheme = ThemeData(
color: Colors.white,
),
labelSmall: TextStyle(
fontSize: 20,
fontSize: 12,
fontWeight: FontWeight.bold,
color: Colors.white,
),
headlineSmall: TextStyle(
fontSize: 12,
fontWeight: FontWeight.normal,
color: Colors.blue,
),
headlineMedium: TextStyle(
fontSize: 14,
fontWeight: FontWeight.normal,
color: Colors.blue,
),
headlineLarge: TextStyle(
fontSize: 16,
fontWeight: FontWeight.normal,
color: Colors.blue,
),
),
);

Expand Down Expand Up @@ -157,9 +172,24 @@ final ThemeData darkTheme = ThemeData(
color: Colors.black,
),
labelSmall: TextStyle(
fontSize: 20,
fontSize: 12,
fontWeight: FontWeight.bold,
color: Colors.black,
),
headlineSmall: TextStyle(
fontSize: 12,
fontWeight: FontWeight.normal,
color: Colors.blue,
),
headlineMedium: TextStyle(
fontSize: 14,
fontWeight: FontWeight.normal,
color: Colors.blue,
),
headlineLarge: TextStyle(
fontSize: 16,
fontWeight: FontWeight.normal,
color: Colors.blue,
),
),
);
2 changes: 2 additions & 0 deletions frontend/lib/features/home/pages/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ class HomePage extends ConsumerWidget {
// TODO: notify user if not all data has been synced with server yet

// TODO: move this to a central shared file

// TODO: adjust all ref.read statements for error in screenshot
}

@override
Expand Down
Loading

0 comments on commit 39c97fa

Please sign in to comment.