diff --git a/lib/Feed Module/Main_Screens/ProfileTab/EditProfile/View/EditProfile.dart b/lib/Feed Module/Main_Screens/ProfileTab/EditProfile/View/EditProfile.dart index f6cd840..b67f5fb 100644 --- a/lib/Feed Module/Main_Screens/ProfileTab/EditProfile/View/EditProfile.dart +++ b/lib/Feed Module/Main_Screens/ProfileTab/EditProfile/View/EditProfile.dart @@ -125,6 +125,9 @@ class _EditProfileState extends State { FormData? updata; var imageFile; + selectedinterestid.isEmpty + ? getCatIdFromName(listofUserInterests) + : selectedinterestid; String abilitiesIds = selectedinterestid.toString(); print("Interests String: $abilitiesIds"); @@ -355,7 +358,7 @@ class _EditProfileState extends State { sizedBoxHeight(16.h), CustomTextFormField( textEditingController: fullNameController, - leadingIcon: SizedBox( + leadingIcon: Container( width: 18.w, height: 17.h, child: Center( @@ -413,7 +416,7 @@ class _EditProfileState extends State { ), ), ), - hintText: "Select your date of birth", + hintText: "12-04-2024", textEditingController: dateController, ), ), @@ -507,7 +510,8 @@ class _EditProfileState extends State { sizedBoxHeight(16.h), CustomTextFormField2( textEditingController: aboutController, - hintText: "Tell us about yourself", + hintText: + "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Lorem Ipsum has been the industry's standard", maxlines: 3, ), // sizedBoxHeight(20.h), diff --git a/lib/Feed Module/Main_Screens/ProfileTab/Settings/DeleteAccount.dart b/lib/Feed Module/Main_Screens/ProfileTab/Settings/DeleteAccount.dart index 7d453cf..9bfa5ea 100644 --- a/lib/Feed Module/Main_Screens/ProfileTab/Settings/DeleteAccount.dart +++ b/lib/Feed Module/Main_Screens/ProfileTab/Settings/DeleteAccount.dart @@ -118,7 +118,8 @@ class _DeleteAccountState extends State { CommonBtn( text: "I don’t want to delete", onTap: () { - Get.toNamed(RouteName.mainscreen); + // Get.toNamed(RouteName.mainscreen); + Get.back(); }, ), sizedBoxHeight(18.h),