Skip to content

Commit

Permalink
fix: display multiple rooms (#1104)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdmendes authored Feb 5, 2024
2 parents fb4d556 + c0e47c4 commit ee4a430
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions uni/lib/view/schedule/widgets/schedule_slot.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ class ScheduleSlot extends StatelessWidget {
style: Theme.of(context).textTheme.bodyMedium,
alignment: TextAlign.center,
);
final roomTextField = TextFieldWidget(
text: rooms,
final roomTextField = Text(
rooms,
style: Theme.of(context).textTheme.bodyMedium,
alignment: TextAlign.right,
);
return [
ScheduleTimeWidget(
Expand Down

0 comments on commit ee4a430

Please sign in to comment.