diff --git a/lib/controls/search_result_status_control.dart b/lib/controls/search_result_status_control.dart index 5ec6e36..fe3e304 100644 --- a/lib/controls/search_result_status_control.dart +++ b/lib/controls/search_result_status_control.dart @@ -105,14 +105,17 @@ class _SearchResultStatusControlState extends State { ), ), ); - return Padding( - padding: const EdgeInsets.only( - left: otherPadding, - right: otherPadding, - top: otherPadding, - bottom: otherPadding, + return GestureDetector( + onTap: widget.goToPostFunction, + child: Padding( + padding: const EdgeInsets.only( + left: otherPadding, + right: otherPadding, + top: otherPadding, + bottom: otherPadding, + ), + child: body, ), - child: body, ); }