增加个人主页喊话状态保存、我的圈子数据为空显示占位图
This commit is contained in:
parent
6051a3abc4
commit
6be366f2c1
@ -57,7 +57,7 @@ class _My_circlePageState extends State<My_circlePage>
|
||||
// Text(controller.state.msg),
|
||||
//组件使用
|
||||
Expanded(
|
||||
child: logic.circle.lists.isEmpty ? loaddingWidget(true) : Swiper(
|
||||
child: logic.circle.lists.isEmpty ? !logic.isMore ? noResultWidget() : loaddingWidget(logic.isMore) : Swiper(
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
var bean = logic.circle.lists[index];
|
||||
// final GlobalKey<InfoListViewState> infoListViewKey = GlobalKey<InfoListViewState>();
|
||||
|
||||
@ -22,7 +22,9 @@ class HomeCallOutView extends StatefulWidget {
|
||||
State<HomeCallOutView> createState() => _HomeCallOutViewState();
|
||||
}
|
||||
|
||||
class _HomeCallOutViewState extends State<HomeCallOutView> {
|
||||
class _HomeCallOutViewState extends State<HomeCallOutView> with AutomaticKeepAliveClientMixin {
|
||||
@override
|
||||
bool get wantKeepAlive => true;
|
||||
HomeCallOutLogic? listsLg;
|
||||
|
||||
@override
|
||||
|
||||
Loading…
Reference in New Issue
Block a user