Skip to content
Merged

main #54

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/l10n/app_pt.arb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

"emailOrUsername": "Email ou Nome de Utilizador",

"password": "Palavra-passe",
"password": "Senha",

"required": "Obrigatório",

Expand Down
9 changes: 9 additions & 0 deletions lib/pages/login_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,15 @@ class _LoginPageState extends State<LoginPage> {
mainAxisAlignment: MainAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
children: [
ClipRRect(
borderRadius: BorderRadius.circular(20),
child: Image.asset(
'assets/app_icon.png',
width: 96,
height: 96,
),
),
const SizedBox(height: 16),
Text(l10n.signIn, style: const TextStyle(fontSize: 20, fontWeight: FontWeight.bold)),
const SizedBox(height: 16),
if (_error != null)
Expand Down
3 changes: 2 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: manager
description: "Track Fleet"
publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 3.18.7+1
version: 3.18.8+1

environment:
sdk: ^3.9.2
Expand Down Expand Up @@ -54,6 +54,7 @@ flutter:

assets:
- assets/marker.png
- assets/app_icon.png
fonts:
- family: platform-font
fonts:
Expand Down
Loading