From ea458d58b21bcd31c6f92e317852b98976d4a6bb Mon Sep 17 00:00:00 2001 From: Shubhamshirva Date: Fri, 23 Aug 2024 15:29:01 +0530 Subject: [PATCH] conflicts resolved --- .../Community_HomePage/Community.dart | 36 +++++++++---------- 1 file changed, 17 insertions(+), 19 deletions(-) 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),