|
|
|
|
@ -21,29 +21,30 @@ class PersonalInfo extends StatelessWidget {
|
|
|
|
|
title: LocaleKeys.profile_personalInformation.tr(),
|
|
|
|
|
),
|
|
|
|
|
backgroundColor: MyColors.backgroundColor,
|
|
|
|
|
body: SizedBox(
|
|
|
|
|
width: MediaQuery.of(context).size.width,
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
// mainAxisSize: MainAxisSize.min,
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
LocaleKeys.category.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.eMPLOYMENTCATEGORYMEANING ?? "").toText16(),
|
|
|
|
|
20.height,
|
|
|
|
|
LocaleKeys.address.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.lOCATIONNAME ?? "").toText16(),
|
|
|
|
|
20.height,
|
|
|
|
|
LocaleKeys.phoneNumber.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.eMPLOYEEMOBILENUMBER ?? "").toText16(),
|
|
|
|
|
20.height,
|
|
|
|
|
LocaleKeys.businessGroup.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.bUSINESSGROUPNAME ?? "").toText16(),
|
|
|
|
|
20.height,
|
|
|
|
|
LocaleKeys.Payroll.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.pAYROLLNAME ?? "").toText16(),
|
|
|
|
|
],
|
|
|
|
|
).objectContainerView().paddingAll(21),
|
|
|
|
|
body: ListView(
|
|
|
|
|
children: [
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
LocaleKeys.category.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.eMPLOYMENTCATEGORYMEANING ?? "").toText16(),
|
|
|
|
|
12.height,
|
|
|
|
|
LocaleKeys.address.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.lOCATIONNAME ?? "").toText16(),
|
|
|
|
|
12.height,
|
|
|
|
|
LocaleKeys.phoneNumber.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.eMPLOYEEMOBILENUMBER ?? "").toText16(),
|
|
|
|
|
12.height,
|
|
|
|
|
LocaleKeys.businessGroup.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.bUSINESSGROUPNAME ?? "").toText16(),
|
|
|
|
|
12.height,
|
|
|
|
|
LocaleKeys.Payroll.tr().toText13(color: MyColors.lightGrayColor),
|
|
|
|
|
(memberInformationList.pAYROLLNAME ?? "").toText16(),
|
|
|
|
|
],
|
|
|
|
|
).objectContainerView(center: false).paddingAll(21),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|