Merge branch 'feature-followingLiveUser'
This commit is contained in:
@ -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 {
|
||||||
|
Reference in New Issue
Block a user