fix: 未登录状态页面显示异常

This commit is contained in:
guozhigq
2023-07-16 20:43:21 +08:00
parent a0427c672b
commit facfa0d11e
5 changed files with 17 additions and 4 deletions

View File

@ -423,7 +423,11 @@ class _VideoInfoState extends State<VideoInfo> with TickerProviderStateMixin {
? '关注'
: '已关注'),
)
: const SizedBox(),
: ElevatedButton(
onPressed: () => videoIntroController
.actionRelationMod(),
child: const Text('关注'),
),
),
),
),