Merge pull request #159 from WDI-Ideas/RegroupPriyanka

minor changes
This commit is contained in:
priyankahadpad
2024-08-23 20:16:19 +05:30
committed by GitHub
3 changed files with 10 additions and 10 deletions

View File

@@ -177,7 +177,7 @@ class _NormalCardTileState extends State<NormalCardTile> {
.last;
return ConstrainedBox(
constraints: BoxConstraints(minHeight: Get.width < 400 ? 750 : 700),
constraints: BoxConstraints(minHeight: Get.width < 400 ? 750 : 770),
child: commonGlassUI(
width: double.infinity,
height: 600.h,

View File

@@ -438,7 +438,7 @@ class _MyCommunityState extends State<MyCommunity> {
}
await MyCommunityAPI()
.getMyCommunity();
setState(() {});
// setState(() {});
return utils
.showToast(data.message);
@@ -501,7 +501,7 @@ class _MyCommunityState extends State<MyCommunity> {
await MyCommunityAPI()
.getMyCommunity();
setState(() {});
// setState(() {});
print("success");
// // Get.back();

View File

@@ -654,19 +654,19 @@ class _InvitedTabState extends State<InvitedTab> {
width: 200.w,
child: text18w700_FCFCFC(
invitedComData
.senderDetail !=
.community !=
null &&
invitedComData
.senderDetail!
.fullName !=
.community!
.communityName !=
null &&
invitedComData
.senderDetail!
.fullName!
.community!
.communityName!
.isNotEmpty
? invitedComData
.senderDetail!
.fullName!
.community!
.communityName!
: '',
),
)),