conflicts resolved

This commit is contained in:
Shubhamshirva
2024-08-23 15:29:01 +05:30
parent 51f601d982
commit ea458d58b2

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),