|
|
|
|
@ -65,11 +65,11 @@ class _FamilyMembersState extends State<FamilyMembers> {
|
|
|
|
|
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,
|
|
|
|
|
|