Skip to content

Commit

Permalink
Release/v1.9.3 (#1340)
Browse files Browse the repository at this point in the history
  • Loading branch information
DGoiana authored Sep 29, 2024
2 parents 1785d0a + 8a2b558 commit 3c04ebc
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/uni_app/lib/generated/intl/messages_en.dart
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,8 @@ class MessageLookup extends MessageLookupByLibrary {
"There are no course units to display"),
"no_selected_exams": MessageLookupByLibrary.simpleMessage(
"There are no exams to present"),
"no_trips": MessageLookupByLibrary.simpleMessage(
"No trips found at the moment"),
"notifications": MessageLookupByLibrary.simpleMessage("Notifications"),
"occurrence_type":
MessageLookupByLibrary.simpleMessage("Type of occurrence"),
Expand Down
2 changes: 2 additions & 0 deletions packages/uni_app/lib/generated/intl/messages_pt_PT.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,8 @@ class MessageLookup extends MessageLookupByLibrary {
"Não existem cadeiras para apresentar"),
"no_selected_exams": MessageLookupByLibrary.simpleMessage(
"Não existem exames para apresentar"),
"no_trips": MessageLookupByLibrary.simpleMessage(
"Não há viagens planeadas de momento"),
"notifications": MessageLookupByLibrary.simpleMessage("Notificações"),
"occurrence_type":
MessageLookupByLibrary.simpleMessage("Tipo de ocorrência"),
Expand Down
10 changes: 10 additions & 0 deletions packages/uni_app/lib/generated/l10n.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions packages/uni_app/lib/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,8 @@
"@no_internet": {},
"no_files_found": "No files found",
"@no_files_found": {},
"no_trips": "No trips found at the moment",
"@no_trips": {},
"other_links": "Other links",
"@other_links": {},
"pass_change_request": "For security reasons, passwords must be changed periodically.",
Expand Down
2 changes: 2 additions & 0 deletions packages/uni_app/lib/l10n/intl_pt_PT.arb
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@
"@no_link": {},
"no_files_found": "Nenhum ficheiro encontrado",
"@no_files_found": {},
"no_trips": "Não há viagens planeadas de momento",
"@no_trips": {},
"other_links": "Outros links",
"@other_links": {},
"pass_change_request": "Por razões de segurança, as palavras-passe têm de ser alteradas periodicamente.",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:uni/generated/l10n.dart';
import 'package:uni/model/entities/trip.dart';
import 'package:uni/view/bus_stop_next_arrivals/widgets/trip_row.dart';

Expand Down Expand Up @@ -48,7 +49,7 @@ class BusStopRow extends StatelessWidget {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 20),
child: Text(
'Não há viagens planeadas de momento.',
S.of(context).no_trips,
maxLines: 3,
textAlign: TextAlign.center,
overflow: TextOverflow.ellipsis,
Expand Down
1 change: 1 addition & 0 deletions packages/uni_app/lib/view/login/widgets/inputs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ Widget createAFLogInButton(
) {
return ElevatedButton(
style: ElevatedButton.styleFrom(
padding: const EdgeInsets.all(7),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(25),
),
Expand Down
2 changes: 2 additions & 0 deletions packages/uni_app/lib/view/theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ ThemeData applicationLightTheme = ThemeData(
onTertiary: Colors.black,
),
primaryColor: darkRed,
scaffoldBackgroundColor: _mildWhite,
cardColor: Colors.white,
dividerColor: _lightGrey,
hintColor: _lightGrey,
Expand Down Expand Up @@ -68,6 +69,7 @@ ThemeData applicationDarkTheme = ThemeData(
primaryColor: _lightGrey,
cardColor: _mildBlack,
dividerColor: _strongGrey,
scaffoldBackgroundColor: _darkBlack,
hintColor: _darkishBlack,
indicatorColor: _lightGrey,
primaryTextTheme: Typography().white,
Expand Down

0 comments on commit 3c04ebc

Please sign in to comment.