diff --git a/lib/Main_Screens/Community_HomePage/Community.dart b/lib/Main_Screens/Community_HomePage/Community.dart index 029afc3..9440af4 100644 --- a/lib/Main_Screens/Community_HomePage/Community.dart +++ b/lib/Main_Screens/Community_HomePage/Community.dart @@ -850,26 +850,24 @@ class _LatestTabState extends State { ), ), latestpostobj!.data.isEmpty - ? Expanded( - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Center( - child: Column( - children: [ - Text( - "No Post Available", - style: TextStyle( - color: Colors.white, - fontSize: 16.sp, - fontWeight: FontWeight.w600), - ) - ], - ), - ), - ], + ? Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Center( + child: Column( + children: [ + Text( + "No Post Available", + style: TextStyle( + color: Colors.white, + fontSize: 16.sp, + fontWeight: FontWeight.w600), + ) + ], + ), ), - ) + ], + ) : Column( children: [ sizedBoxHeight(20.h),