diff --git a/lib/ui/profile/family_members.dart b/lib/ui/profile/family_members.dart index 00f7e11..0a0bb0c 100644 --- a/lib/ui/profile/family_members.dart +++ b/lib/ui/profile/family_members.dart @@ -65,11 +65,11 @@ class _FamilyMembersState extends State { title: LocaleKeys.profile_familyDetails.tr(), ), backgroundColor: MyColors.backgroundColor, - body: getEmployeeContactsList.isEmpty ? Utils.getNoDataWidget(context) - : Column( + body: Column( children: [ Expanded( - child: ListView.separated( + child: getEmployeeContactsList.isEmpty ? Utils.getNoDataWidget(context) + : ListView.separated( padding: const EdgeInsets.all(21), separatorBuilder: (cxt, index) => 12.height, itemCount: getEmployeeContactsList.length,