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,11 +154,19 @@ class Sidebar extends HookConsumerWidget {
backgroundImage: backgroundImage:
CachedNetworkImageProvider(avatarImg), CachedNetworkImageProvider(avatarImg),
), ),
const SizedBox(width: 10), const SizedBox(
Text( width: 10,
data.displayName ?? "Guest", ),
style: const TextStyle( SizedBox(
fontWeight: FontWeight.bold, width: 120,
child: Text(
data.displayName ?? "Guest",
maxLines: 1,
softWrap: false,
overflow: TextOverflow.fade,
style: const TextStyle(
fontWeight: FontWeight.bold,
),
), ),
), ),
], ],