mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Add like button on group page
This commit is contained in:
@ -2,6 +2,7 @@ import 'package:comunic/models/advanced_group_info.dart';
|
||||
import 'package:comunic/ui/widgets/group_following_widget.dart';
|
||||
import 'package:comunic/ui/widgets/group_icon_widget.dart';
|
||||
import 'package:comunic/ui/widgets/group_membership_widget.dart';
|
||||
import 'package:comunic/ui/widgets/like_widget.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
/// Authorized group page screen
|
||||
@ -57,11 +58,19 @@ class _AuthorizedGroupPageScreenState extends State<AuthorizedGroupPageScreen> {
|
||||
group: _group,
|
||||
onUpdated: () => widget.needRefresh(),
|
||||
),
|
||||
Container(height: 10,),
|
||||
Container(
|
||||
height: 4,
|
||||
),
|
||||
GroupFollowingWidget(
|
||||
group: _group,
|
||||
onUpdated: () => widget.needRefresh(),
|
||||
),
|
||||
Container(
|
||||
height: 2,
|
||||
),
|
||||
LikeWidget(
|
||||
likeElement: _group,
|
||||
)
|
||||
],
|
||||
)
|
||||
],
|
||||
|
Reference in New Issue
Block a user