Merge pull request #153 from WDI-Ideas/bugs23aug

conflicts resolved
This commit is contained in:
Shubham Shetty
2024-08-23 15:29:49 +05:30
committed by GitHub

View File

@@ -850,26 +850,24 @@ class _LatestTabState extends State<LatestTab> {
),
),
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),