Added api for custom timetable events

This commit is contained in:
2024-02-12 01:00:12 +01:00
parent 3eae5ba10a
commit 22db412e75
36 changed files with 849 additions and 229 deletions

View File

@ -53,7 +53,7 @@ class _AppointmentComponentState extends State<AppointmentComponent> {
FittedBox(
fit: BoxFit.fitWidth,
child: Text(
meeting.location ?? "-",
(meeting.location == null || meeting.location!.isEmpty ? " " : meeting.location!),
maxLines: 3,
overflow: TextOverflow.ellipsis,
softWrap: true,