Fade Long Usernames on Sidebar

Long usernames now fade out on the sidebar to make room for the settings button
This commit is contained in:
Demizo 2022-09-01 17:01:17 -05:00
parent c3bf5119eb
commit c439a526dd

View File

@ -154,13 +154,21 @@ class Sidebar extends HookConsumerWidget {
backgroundImage:
CachedNetworkImageProvider(avatarImg),
),
const SizedBox(width: 10),
Text(
const SizedBox(
width: 10,
),
SizedBox(
width: 120,
child: Text(
data.displayName ?? "Guest",
maxLines: 1,
softWrap: false,
overflow: TextOverflow.fade,
style: const TextStyle(
fontWeight: FontWeight.bold,
),
),
),
],
),
IconButton(