This commit is contained in:
lollipopkit
2024-03-08 00:06:19 -06:00
parent c65525ac86
commit 58f0a1fade
3 changed files with 47 additions and 18 deletions

View File

@@ -368,25 +368,23 @@ class _ServerPageState extends State<ServerPage>
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Row(
children: [
Text(
spi.name,
style: UIs.text13Bold,
),
const Icon(
Icons.keyboard_arrow_right,
size: 17,
color: Colors.grey,
)
],
ConstrainedBox(
constraints: BoxConstraints(maxWidth: _media.size.width / 2.3),
child: Text(
spi.name,
style: UIs.text13Bold,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
),
Row(
children: [
_buildTopRightText(ss, cs),
rightCorner,
],
)
const Icon(
Icons.keyboard_arrow_right,
size: 17,
color: Colors.grey,
),
const Spacer(),
_buildTopRightText(ss, cs),
rightCorner,
],
),
);