diff --git a/lib/features/home/presentation_layer/screens/home.dart b/lib/features/home/presentation_layer/screens/home.dart index 50d1a44..cd75915 100644 --- a/lib/features/home/presentation_layer/screens/home.dart +++ b/lib/features/home/presentation_layer/screens/home.dart @@ -182,6 +182,12 @@ class HomeScreen extends StatelessWidget { ).center(); } else { return Obx(() { + if (cardController + .cardState.result.data.isEmpty) { + return SizedBox( + height: Get.height, + ); + } return ResponsiveView( mainAxisExtent: Responsive.isTablet() ? 200 : 158,