kopia lustrzana https://gitlab.com/mysocialportal/relatica
Allow clicking anywhere on search result card to open the post/comment
rodzic
0adbeb8f82
commit
dece212ded
|
@ -105,14 +105,17 @@ class _SearchResultStatusControlState extends State<SearchResultStatusControl> {
|
|||
),
|
||||
),
|
||||
);
|
||||
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,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue