Skip to content

Commit

Permalink
Add grades button
Browse files Browse the repository at this point in the history
  • Loading branch information
vyPal committed Nov 17, 2024
1 parent afb19f3 commit 6adf294
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions lib/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,29 @@ class HomePageState extends BaseState<HomePage> {
),
),
),
Container(
width: MediaQuery.of(context).size.width,
margin: const EdgeInsets.only(left: 20, right: 20, top: 10),
child: Card(
elevation: 5,
child: Padding(
padding: const EdgeInsets.all(10),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
"Grades",
style: const TextStyle(fontSize: 20),
),
Text(
"Check your grades",
style: const TextStyle(fontSize: 12),
),
],
),
),
),
),
],
),
],
Expand Down

0 comments on commit 6adf294

Please sign in to comment.