fix ui issues

This commit is contained in:
Salvatore Giordano
2020-11-20 14:55:38 +01:00
parent 8bc9e62917
commit cc22b1b4ae
6 changed files with 50 additions and 26 deletions
+4 -1
View File
@@ -80,7 +80,10 @@ class UserItem extends StatelessWidget {
radius: 10,
)
: null,
title: Text(user.name,style: TextStyle(fontWeight: FontWeight.bold),),
title: Text(
user.name,
style: TextStyle(fontWeight: FontWeight.bold),
),
subtitle: showLastOnline ? _buildLastActive(context) : null,
);
}