From e6492a5f30d002835ac1c4033208bbbf70b2d9f9 Mon Sep 17 00:00:00 2001 From: luis Date: Mon, 11 Dec 2023 18:57:01 +0000 Subject: [PATCH] Linter fixes --- uni/lib/view/library/widgets/library_occupation_tab.dart | 8 ++++---- .../view/library/widgets/library_reservations_tab.dart | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/uni/lib/view/library/widgets/library_occupation_tab.dart b/uni/lib/view/library/widgets/library_occupation_tab.dart index 73c8a21e8..558624abc 100644 --- a/uni/lib/view/library/widgets/library_occupation_tab.dart +++ b/uni/lib/view/library/widgets/library_occupation_tab.dart @@ -52,7 +52,7 @@ class LibraryOccupationTabView extends StatelessWidget { style: Theme.of(context).textTheme.titleLarge, textAlign: TextAlign.center, ), - ) + ), ], ); } @@ -63,7 +63,7 @@ class LibraryOccupationTabView extends StatelessWidget { if (occupation != null) ...[ PageTitle(name: S.of(context).floors), FloorRows(occupation!), - ] + ], ], ); } @@ -106,7 +106,7 @@ class FloorCard extends StatelessWidget { color: Color.fromARGB(0x1c, 0, 0, 0), blurRadius: 7, offset: Offset(0, 1), - ) + ), ], ), child: Column( @@ -132,7 +132,7 @@ class FloorCard extends StatelessWidget { percent: floor.percentage / 100, progressColor: Theme.of(context).colorScheme.secondary, backgroundColor: Theme.of(context).dividerColor, - ) + ), ], ), ); diff --git a/uni/lib/view/library/widgets/library_reservations_tab.dart b/uni/lib/view/library/widgets/library_reservations_tab.dart index d4456b58d..ac8f9ade6 100644 --- a/uni/lib/view/library/widgets/library_reservations_tab.dart +++ b/uni/lib/view/library/widgets/library_reservations_tab.dart @@ -40,7 +40,7 @@ class LibraryReservationsTabView extends StatelessWidget { style: Theme.of(context).textTheme.titleLarge, textAlign: TextAlign.center, ), - ) + ), ], ); }