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

@@ -25,9 +25,10 @@ class _LiveFollowPageState extends State<LiveFollowPage> {
return Scaffold(
appBar: AppBar(
title: Obx(
() => Text(_controller.count.value != null
? '${_controller.count.value}人正在直播'
: '关注直播'),
() {
final count = _controller.count.value;
return Text(count != null ? '$count人正在直播' : '关注直播');
},
),
),
body: SafeArea(