Compare commits

..

No commits in common. "6b3c1fd2a4cf9c4e313701c20e261d83ec180dff" and "efa8d14913f5f7ba5f36bdc15ada78a6c671085a" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ class _HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin
Obx(() {
return Container(
padding: EdgeInsets.symmetric(horizontal: 12.w),
child: state.workList.isNotEmpty?Column(
child: 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(),
),
);
}),
],