mcy_new #1

Merged
wangyang merged 179 commits from mcy_new into master 2025-08-28 10:10:45 +08:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 6b3c1fd2a4 - Show all commits

View File

@ -115,7 +115,7 @@ class _HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin
Obx(() {
return Container(
padding: EdgeInsets.symmetric(horizontal: 12.w),
child: Column(
child: state.workList.isNotEmpty?Column(
children: List.generate(state.workList.length, (index) {
Items item = state.workList[index];
return InkWell(
@ -242,7 +242,7 @@ class _HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin
),
);
}),
),
):const MyEmptyWidget(),
);
}),
],