mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
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:
parent
c3bf5119eb
commit
c439a526dd
@ -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,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user