diff --git a/making_school_asignment_app/lib/page/home_page/home_view.dart b/making_school_asignment_app/lib/page/home_page/home_view.dart index a32557e..bf2b7e1 100644 --- a/making_school_asignment_app/lib/page/home_page/home_view.dart +++ b/making_school_asignment_app/lib/page/home_page/home_view.dart @@ -115,7 +115,7 @@ class _HomePageState extends State 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 with AutomaticKeepAliveClientMixin ), ); }), - ), + ):const MyEmptyWidget(), ); }), ],