Skip to content

Commit

Permalink
Run dart format.
Browse files Browse the repository at this point in the history
  • Loading branch information
Process-ing committed Aug 9, 2023
1 parent 6a1e2aa commit 9b43d32
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions uni/lib/utils/navbar_items.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,29 @@ import 'package:flutter/material.dart';

enum NavbarItem {
navPersonalArea(
'Área Pessoal',
Icons.home_outlined,
['Área Pessoal'],
'Área Pessoal',
Icons.home_outlined,
['Área Pessoal'],
),
navStudentArea(
'Área do Estudante',
Icons.school_outlined,
['Horário', 'Exames', 'Cadeiras', 'Calendário'],
'Área do Estudante',
Icons.school_outlined,
['Horário', 'Exames', 'Cadeiras', 'Calendário'],
),
navMap(
'Mapa e Transportes',
Icons.map_outlined,
['Autocarros', 'Locais'],
'Mapa e Transportes',
Icons.map_outlined,
['Autocarros', 'Locais'],
),
navUsefulInfo(
'Úteis',
Icons.domain_outlined,
['Restaurantes', 'Biblioteca', 'Úteis'],
'Úteis',
Icons.domain_outlined,
['Restaurantes', 'Biblioteca', 'Úteis'],
),
navCurrentAccount(
'Conta Corrente',
Icons.account_balance_wallet_outlined,
[],
'Conta Corrente',
Icons.account_balance_wallet_outlined,
[],
);

const NavbarItem(this.label, this.icon, this.routes);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
import 'package:uni/utils/navbar_items.dart';

class AppBottomNavbar extends StatefulWidget {
const AppBottomNavbar({ required this.parentContext, super.key });
const AppBottomNavbar({required this.parentContext, super.key});

final BuildContext parentContext;

Expand Down

0 comments on commit 9b43d32

Please sign in to comment.