diff --git a/lib/view/pages/talk/components/chatBubble.dart b/lib/view/pages/talk/components/chatBubble.dart index a5d281d..0190b3b 100644 --- a/lib/view/pages/talk/components/chatBubble.dart +++ b/lib/view/pages/talk/components/chatBubble.dart @@ -304,7 +304,7 @@ class _ChatBubbleState extends State with SingleTickerProviderStateM var pollId = int.parse(message.originalData!['object']!.id); var pollState = GetPollState(token: widget.bubbleData.token, pollId: pollId).run(); showDialog(context: context, builder: (context) => AlertDialog( - title: Text(message.originalData!['object']!.name, textScaler: TextScaler.linear(0.9)), + title: Text(message.originalData!['object']!.name, textScaler: TextScaler.linear(0.9), overflow: TextOverflow.ellipsis), content: FutureBuilder( future: pollState, builder: (context, snapshot) { diff --git a/lib/view/pages/talk/components/pollOptionsList.dart b/lib/view/pages/talk/components/pollOptionsList.dart index 670d8e4..dd9cd70 100644 --- a/lib/view/pages/talk/components/pollOptionsList.dart +++ b/lib/view/pages/talk/components/pollOptionsList.dart @@ -35,7 +35,7 @@ class _PollOptionsListState extends State { option, style: Theme.of(context).textTheme.bodyLarge, ), - trailing: Icon( + leading: Icon( votedSelf ? Icons.check_circle_outlined : Icons.circle_outlined, color: votedSelf ? Theme.of(context).colorScheme.primary.withValues(alpha: 0.6)