Skip to content

Commit

Permalink
Add "Consultas SASUP" link to "Outros links" card.
Browse files Browse the repository at this point in the history
  • Loading branch information
Process-ing committed Aug 22, 2023
1 parent 14a7eb6 commit 7dc87c8
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions uni/lib/view/useful_info/widgets/other_links_card.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
import 'package:uni/view/common_widgets/generic_expansion_card.dart';
// import 'package:uni/view/useful_info/widgets/link_button.dart';
import 'package:uni/view/useful_info/widgets/link_button.dart';

/// Manages the 'Current account' section inside the user's page (accessible
/// through the top-right widget with the user picture)
Expand All @@ -10,11 +10,15 @@ class OtherLinksCard extends GenericExpansionCard {
@override
Widget buildCardContent(BuildContext context) {
return Column(
/*children: const [
// LinkButton(title: 'Impressão', link: 'https://print.up.pt')
children: const [
// LinkButton(title: 'Impressão', link: 'https://print.up.pt'),
// TODO(Process-ing): Get fixed link
],*/
);
LinkButton(
title: 'Consultas SASUP',
link: 'https://www.up.pt/portal/pt/sasup/saude/marcar-consulta/',
),
],
);
}

@override
Expand Down

0 comments on commit 7dc87c8

Please sign in to comment.