mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
Fix an issue with web links
This commit is contained in:
parent
4bcb56aa08
commit
66b4d19004
@ -74,6 +74,8 @@ class Post implements LikeElement {
|
||||
|
||||
bool get canUpdate => access == UserAccessLevels.FULL;
|
||||
|
||||
bool get hasLinkImage => linkImage != null;
|
||||
|
||||
bool get canDelete =>
|
||||
access == UserAccessLevels.FULL ||
|
||||
access == UserAccessLevels.INTERMEDIATE;
|
||||
|
@ -263,11 +263,16 @@ class _PostTileState extends State<PostTile> {
|
||||
children: <Widget>[
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(right: 8.0),
|
||||
child: NetworkImageWidget(
|
||||
url: widget.post.linkImage,
|
||||
width: 70,
|
||||
roundedEdges: false,
|
||||
),
|
||||
child: widget.post.hasLinkImage
|
||||
? NetworkImageWidget(
|
||||
url: widget.post.linkImage,
|
||||
width: 70,
|
||||
roundedEdges: false,
|
||||
)
|
||||
: Icon(
|
||||
Icons.link,
|
||||
size: 70,
|
||||
),
|
||||
),
|
||||
Flexible(
|
||||
child: Column(
|
||||
|
Loading…
Reference in New Issue
Block a user