mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
Show user email address & location on tablet mode
This commit is contained in:
parent
bdbdc2c790
commit
f5ad2129d4
@ -167,6 +167,22 @@ class _UserPageTabletState extends State<UserPageTablet> {
|
|||||||
parsed: true,
|
parsed: true,
|
||||||
),
|
),
|
||||||
|
|
||||||
|
// User email address
|
||||||
|
_AboutUserEntry(
|
||||||
|
icon: Icons.mail_outline,
|
||||||
|
title: tr("Email address"),
|
||||||
|
value: _userInfo.emailAddress,
|
||||||
|
visible: _userInfo.emailAddress != null,
|
||||||
|
),
|
||||||
|
|
||||||
|
// Location
|
||||||
|
_AboutUserEntry(
|
||||||
|
icon: Icons.location_on,
|
||||||
|
title: tr("Location"),
|
||||||
|
value: _userInfo.location,
|
||||||
|
visible: _userInfo.location != null,
|
||||||
|
),
|
||||||
|
|
||||||
// User website
|
// User website
|
||||||
_AboutUserEntry(
|
_AboutUserEntry(
|
||||||
icon: Icons.link,
|
icon: Icons.link,
|
||||||
|
Loading…
Reference in New Issue
Block a user