Skip to content

Commit

Permalink
changed some dimensions at the library card
Browse files Browse the repository at this point in the history
  • Loading branch information
peucastro committed Feb 12, 2025
1 parent 9b56549 commit 99b9711
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/uni_ui/lib/cards/library_occupation_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class FloorOccupationWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.symmetric(vertical: 5),
padding: const EdgeInsets.symmetric(vertical: 4),
child: Column(
children: [
Row(
Expand Down Expand Up @@ -66,12 +66,12 @@ class LibraryOccupationCard extends StatelessWidget {
Widget build(BuildContext context) {
return GenericCard(
key: key,
padding: const EdgeInsets.symmetric(vertical: 25, horizontal: 15),
padding: const EdgeInsets.symmetric(vertical: 20, horizontal: 10),
tooltip: '',
child: Row(
children: [
CircularPercentIndicator(
radius: 100,
radius: 90,
lineWidth: 12,
percent: occupation / capacity,
center: Text(
Expand All @@ -82,7 +82,7 @@ class LibraryOccupationCard extends StatelessWidget {
backgroundColor: Theme.of(context).colorScheme.surface,
progressColor: Theme.of(context).primaryColor,
),
const SizedBox(width: 20),
const SizedBox(width: 10),
Expanded(
child: Column(
children: occupationWidgetsList,
Expand Down

0 comments on commit 99b9711

Please sign in to comment.