mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Show user email address & location on tablet mode
This commit is contained in:
@ -167,6 +167,22 @@ class _UserPageTabletState extends State<UserPageTablet> {
|
||||
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
|
||||
_AboutUserEntry(
|
||||
icon: Icons.link,
|
||||
|
Reference in New Issue
Block a user