Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlcrodrigues committed Dec 11, 2023
1 parent 73f499e commit e6492a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions uni/lib/view/library/widgets/library_occupation_tab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class LibraryOccupationTabView extends StatelessWidget {
style: Theme.of(context).textTheme.titleLarge,
textAlign: TextAlign.center,
),
)
),
],
);
}
Expand All @@ -63,7 +63,7 @@ class LibraryOccupationTabView extends StatelessWidget {
if (occupation != null) ...[
PageTitle(name: S.of(context).floors),
FloorRows(occupation!),
]
],
],
);
}
Expand Down Expand Up @@ -106,7 +106,7 @@ class FloorCard extends StatelessWidget {
color: Color.fromARGB(0x1c, 0, 0, 0),
blurRadius: 7,
offset: Offset(0, 1),
)
),
],
),
child: Column(
Expand All @@ -132,7 +132,7 @@ class FloorCard extends StatelessWidget {
percent: floor.percentage / 100,
progressColor: Theme.of(context).colorScheme.secondary,
backgroundColor: Theme.of(context).dividerColor,
)
),
],
),
);
Expand Down
2 changes: 1 addition & 1 deletion uni/lib/view/library/widgets/library_reservations_tab.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class LibraryReservationsTabView extends StatelessWidget {
style: Theme.of(context).textTheme.titleLarge,
textAlign: TextAlign.center,
),
)
),
],
);
}
Expand Down

0 comments on commit e6492a5

Please sign in to comment.