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(
|
return GestureDetector(
|
||||||
padding: const EdgeInsets.only(
|
onTap: widget.goToPostFunction,
|
||||||
left: otherPadding,
|
child: Padding(
|
||||||
right: otherPadding,
|
padding: const EdgeInsets.only(
|
||||||
top: otherPadding,
|
left: otherPadding,
|
||||||
bottom: otherPadding,
|
right: otherPadding,
|
||||||
|
top: otherPadding,
|
||||||
|
bottom: otherPadding,
|
||||||
|
),
|
||||||
|
child: body,
|
||||||
),
|
),
|
||||||
child: body,
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue