From 7906e6ba36623685ef7fb39367a6daf38f6a3dde Mon Sep 17 00:00:00 2001 From: Shawn Date: Wed, 1 Mar 2023 14:36:39 -0700 Subject: [PATCH] Add focus node --- lib/ui/common/timeline_event_card.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/common/timeline_event_card.dart b/lib/ui/common/timeline_event_card.dart index c8c6947d..fb764397 100644 --- a/lib/ui/common/timeline_event_card.dart +++ b/lib/ui/common/timeline_event_card.dart @@ -40,7 +40,7 @@ class TimelineEventCard extends StatelessWidget { /// Text content Expanded( - child: Text(text, style: $styles.text.body), + child: Focus(child: Text(text, style: $styles.text.body)), ), ], ),