develop-fix-geolocation #91

Merged
Pupsi merged 3 commits from develop-fix-geolocation into develop 2025-10-01 17:08:17 +00:00
3 changed files with 3 additions and 1 deletions
Showing only changes of commit 06c27d6b50 - Show all commits

View File

@@ -120,4 +120,5 @@ enum RichObjectStringObjectType {
@JsonValue('guest') guest, @JsonValue('guest') guest,
@JsonValue('highlight') highlight, @JsonValue('highlight') highlight,
@JsonValue('talk-poll') talkPoll, @JsonValue('talk-poll') talkPoll,
@JsonValue('geo-location') geoLocation,
} }

View File

@@ -113,4 +113,5 @@ const _$RichObjectStringObjectTypeEnumMap = {
RichObjectStringObjectType.guest: 'guest', RichObjectStringObjectType.guest: 'guest',
RichObjectStringObjectType.highlight: 'highlight', RichObjectStringObjectType.highlight: 'highlight',
RichObjectStringObjectType.talkPoll: 'talk-poll', RichObjectStringObjectType.talkPoll: 'talk-poll',
RichObjectStringObjectType.geoLocation: 'geo-location',
}; };

View File

@@ -27,7 +27,7 @@ class ParticipantsListView extends StatelessWidget {
children: [ children: [
ListTile( ListTile(
title: Text(entry.key.prettyName), title: Text(entry.key.prettyName),
titleTextStyle: TextStyle(fontWeight: FontWeight.bold), titleTextStyle: Theme.of(context).textTheme.titleMedium
), ),
...entry.value.map((participant) => ListTile( ...entry.value.map((participant) => ListTile(
leading: UserAvatar(id: participant.actorId), leading: UserAvatar(id: participant.actorId),