From f5ad2129d43dbda86a881a302d4942e4d5313dd7 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sat, 17 Apr 2021 08:52:00 +0200 Subject: [PATCH] Show user email address & location on tablet mode --- lib/ui/widgets/tablet_mode/user_page_tablet.dart | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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,