1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 12:59:21 +00:00

Show user email address & location on tablet mode

This commit is contained in:
Pierre HUBERT 2021-04-17 08:52:00 +02:00
parent bdbdc2c790
commit f5ad2129d4

View File

@ -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,