1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-02-16 21:52:38 +00:00

Can show user account image in full screen

This commit is contained in:
Pierre HUBERT 2020-04-25 14:45:43 +02:00
parent 6b8e1f205b
commit c65d87dacc
2 changed files with 25 additions and 18 deletions

View File

@ -131,7 +131,11 @@ class _UserPageScreenState extends State<UserPageScreen> {
padding: const EdgeInsets.all(8.0), padding: const EdgeInsets.all(8.0),
child: Row( child: Row(
children: <Widget>[ children: <Widget>[
AccountImageWidget(user: _userInfo), InkWell(
onTap: () =>
showImageFullScreen(context, _userInfo.accountImageURL),
child: AccountImageWidget(user: _userInfo),
),
Text(" ${_userInfo.displayName}"), Text(" ${_userInfo.displayName}"),
Spacer(), Spacer(),
IconButton( IconButton(

View File

@ -12,8 +12,11 @@ class AccountImageWidget extends StatelessWidget {
final User user; final User user;
final double width; final double width;
const AccountImageWidget({Key key, this.user, this.width = 35.0}) const AccountImageWidget({
: assert(user != null), Key key,
this.user,
this.width = 35.0,
}) : assert(user != null),
super(key: key); super(key: key);
@override @override