Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-22 21:13:16 +08:00
parent 55bed2e830
commit e770e39c8f
59 changed files with 1388 additions and 1265 deletions

View File

@@ -238,12 +238,15 @@ class _VideoReplyReplyPanelState
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Obx(
() => _controller.count.value != -1
? Text(
'相关回复共${NumUtil.numFormat(_controller.count.value)}',
style: const TextStyle(fontSize: 13),
)
: const SizedBox.shrink(),
() {
final count = _controller.count.value;
return count != -1
? Text(
'相关回复共${NumUtil.numFormat(count)}',
style: const TextStyle(fontSize: 13),
)
: const SizedBox.shrink();
},
),
SizedBox(
height: 35,