Merge branch 'feature-followingLiveUser'

This commit is contained in:
guozhigq
2024-09-22 23:10:33 +08:00

View File

@ -204,14 +204,17 @@ class _LivePageState extends State<LivePage>
// ignore: invalid_use_of_protected_member // ignore: invalid_use_of_protected_member
return Obx(() => LiveFollowingListView(list: list.value)); return Obx(() => LiveFollowingListView(list: list.value));
} else { } else {
return HttpError( return SizedBox(
errMsg: data?['msg'] ?? '', height: 80,
fn: () { child: Center(
setState(() { child: Text(
_futureBuilderFuture2 = data?['msg'] ?? '',
_liveController.fetchLiveFollowing(); style: TextStyle(
}); color: Theme.of(context).colorScheme.outline,
}, fontSize: 12,
),
),
),
); );
} }
} else { } else {