diff --git a/lib/ui/widgets/tablet_mode/user_page_tablet.dart b/lib/ui/widgets/tablet_mode/user_page_tablet.dart index 78d1f91..ecdee86 100644 --- a/lib/ui/widgets/tablet_mode/user_page_tablet.dart +++ b/lib/ui/widgets/tablet_mode/user_page_tablet.dart @@ -167,6 +167,22 @@ class _UserPageTabletState extends State { 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,