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 bb7dcfb0ef - Show all commits

View File

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