mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-21 20:39:22 +00:00
Continue to fix issues
This commit is contained in:
parent
7a0b44e446
commit
820491b09a
@ -43,7 +43,8 @@ class _ForezMemberProfileRouteState extends State<ForezMemberProfileRoute> {
|
||||
late PresenceSet _presence;
|
||||
|
||||
Future<void> _load() async {
|
||||
_user = await ForezGroupsHelper.getMemberInfo(forezGroup!.id, widget.userID);
|
||||
_user =
|
||||
await ForezGroupsHelper.getMemberInfo(forezGroup!.id, widget.userID);
|
||||
_presence =
|
||||
await ForezPresenceHelper.getForUser(forezGroup!.id, widget.userID);
|
||||
}
|
||||
@ -97,13 +98,11 @@ class _ForezMemberProfileRouteState extends State<ForezMemberProfileRoute> {
|
||||
background: Stack(
|
||||
fit: StackFit.expand,
|
||||
children: <Widget>[
|
||||
_user.accountImageURL == null
|
||||
? Container()
|
||||
: CachedNetworkImage(
|
||||
fit: BoxFit.cover,
|
||||
imageUrl: _user.accountImageURL!,
|
||||
height: _appBarHeight,
|
||||
),
|
||||
CachedNetworkImage(
|
||||
fit: BoxFit.cover,
|
||||
imageUrl: _user.accountImageURL,
|
||||
height: _appBarHeight,
|
||||
),
|
||||
// This gradient ensures that the toolbar icons are distinct
|
||||
// against the background image.
|
||||
const DecoratedBox(
|
||||
|
Loading…
Reference in New Issue
Block a user