Merge branch 'development' of https://gitlab.com/Cloud_Solution/doctor_app_flutter into fix-issues
commit
255f36598b
@ -0,0 +1,487 @@
|
||||
import 'package:doctor_app_flutter/config/config.dart';
|
||||
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||
import 'package:doctor_app_flutter/core/enum/viewstate.dart';
|
||||
import 'package:doctor_app_flutter/core/model/admissionRequest/admission-request.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/patient-admission-request-viewmodel.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
||||
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
||||
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
||||
import 'package:doctor_app_flutter/util/date-utils.dart';
|
||||
import 'package:doctor_app_flutter/util/dr_app_toast_msg.dart';
|
||||
import 'package:doctor_app_flutter/util/helpers.dart';
|
||||
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||
import 'package:doctor_app_flutter/widgets/patients/profile/patient-page-header-widget.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/app_buttons_widget.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/dialogs/dailog-list-select.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/loader/gif_loader_dialog_utils.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:hexcolor/hexcolor.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
import '../../../../routes.dart';
|
||||
|
||||
class AdmissionRequestFirstScreen extends StatefulWidget {
|
||||
@override
|
||||
_AdmissionRequestThirdScreenState createState() =>
|
||||
_AdmissionRequestThirdScreenState();
|
||||
}
|
||||
|
||||
class _AdmissionRequestThirdScreenState
|
||||
extends State<AdmissionRequestFirstScreen> {
|
||||
final _dietTypeRemarksController = TextEditingController();
|
||||
final _sickLeaveCommentsController = TextEditingController();
|
||||
final _postMedicalHistoryController = TextEditingController();
|
||||
final _postSurgicalHistoryController = TextEditingController();
|
||||
|
||||
dynamic _selectedClinic;
|
||||
dynamic _selectedDoctor;
|
||||
dynamic _selectedDietType;
|
||||
|
||||
bool _isSickLeaveRequired = false;
|
||||
bool _patientPregnant = false;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final routeArgs = ModalRoute.of(context).settings.arguments as Map;
|
||||
PatiantInformtion patient = routeArgs['patient'];
|
||||
final screenSize = MediaQuery.of(context).size;
|
||||
ProjectViewModel projectViewModel = Provider.of(context);
|
||||
|
||||
return BaseView<AdmissionRequestViewModel>(
|
||||
builder: (_, model, w) => AppScaffold(
|
||||
baseViewModel: model,
|
||||
appBarTitle: TranslationBase.of(context).admissionRequest,
|
||||
body: GestureDetector(
|
||||
onTap: (){
|
||||
FocusScopeNode currentFocus = FocusScope.of(context);
|
||||
if (!currentFocus.hasPrimaryFocus) {
|
||||
currentFocus.unfocus();
|
||||
}
|
||||
},
|
||||
child: Column(
|
||||
children: [
|
||||
Expanded(
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
PatientPageHeaderWidget(patient),
|
||||
Container(
|
||||
margin: EdgeInsets.symmetric(
|
||||
vertical: 16, horizontal: 16),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
SizedBox(
|
||||
height: 16,
|
||||
),
|
||||
AppText(
|
||||
TranslationBase.of(context)
|
||||
.specialityAndDoctorDetail,
|
||||
fontWeight: FontWeight.bold,
|
||||
fontSize: SizeConfig.textMultiplier * 2.5,
|
||||
),
|
||||
SizedBox(
|
||||
height: 10,
|
||||
),
|
||||
Container(
|
||||
height: screenSize.height * 0.070,
|
||||
child: InkWell(
|
||||
onTap: model.clinicList != null &&
|
||||
model.clinicList.length > 0
|
||||
? () {
|
||||
openListDialogField(
|
||||
'clinicGroupName',
|
||||
'clinicID',
|
||||
model.clinicList,
|
||||
(selectedValue) {
|
||||
setState(() {
|
||||
_selectedClinic = selectedValue;
|
||||
});
|
||||
});
|
||||
}
|
||||
: () async {
|
||||
GifLoaderDialogUtils.showMyDialog(
|
||||
context);
|
||||
await model.getClinics().then((_) =>
|
||||
GifLoaderDialogUtils.hideDialog(
|
||||
context));
|
||||
if (model.state == ViewState.Idle &&
|
||||
model.clinicList.length > 0) {
|
||||
openListDialogField(
|
||||
'clinicGroupName',
|
||||
'clinicID',
|
||||
model.clinicList,
|
||||
(selectedValue) {
|
||||
setState(() {
|
||||
_selectedClinic =
|
||||
selectedValue;
|
||||
});
|
||||
});
|
||||
} else if (model.state ==
|
||||
ViewState.ErrorLocal) {
|
||||
DrAppToastMsg.showErrorToast(
|
||||
model.error);
|
||||
} else {
|
||||
DrAppToastMsg.showErrorToast(
|
||||
"Empty List");
|
||||
}
|
||||
},
|
||||
child: TextField(
|
||||
decoration:
|
||||
Helpers.textFieldSelectorDecoration(
|
||||
TranslationBase.of(context)
|
||||
.clinic,
|
||||
_selectedClinic != null
|
||||
? _selectedClinic[
|
||||
'clinicGroupName']
|
||||
: null,
|
||||
true),
|
||||
enabled: false,
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 20,
|
||||
),
|
||||
Container(
|
||||
height: screenSize.height * 0.070,
|
||||
child: InkWell(
|
||||
onTap: _selectedClinic != null
|
||||
? model.doctorsList != null &&
|
||||
model.doctorsList.length > 0
|
||||
? () {
|
||||
openListDialogField(
|
||||
'DoctorName',
|
||||
'DoctorID',
|
||||
model.doctorsList,
|
||||
(selectedValue) {
|
||||
setState(() {
|
||||
_selectedDoctor =
|
||||
selectedValue;
|
||||
});
|
||||
});
|
||||
}
|
||||
: () async {
|
||||
GifLoaderDialogUtils
|
||||
.showMyDialog(context);
|
||||
await model
|
||||
.getClinicDoctors(
|
||||
_selectedClinic[
|
||||
'clinicID'])
|
||||
.then((_) =>
|
||||
GifLoaderDialogUtils
|
||||
.hideDialog(
|
||||
context));
|
||||
if (model.state ==
|
||||
ViewState.Idle &&
|
||||
model.doctorsList.length >
|
||||
0) {
|
||||
openListDialogField(
|
||||
'DoctorName',
|
||||
'DoctorID',
|
||||
model.doctorsList,
|
||||
(selectedValue) {
|
||||
setState(() {
|
||||
_selectedDoctor =
|
||||
selectedValue;
|
||||
});
|
||||
});
|
||||
} else if (model.state ==
|
||||
ViewState.ErrorLocal) {
|
||||
DrAppToastMsg.showErrorToast(
|
||||
model.error);
|
||||
} else {
|
||||
DrAppToastMsg.showErrorToast(
|
||||
"Empty List");
|
||||
}
|
||||
}
|
||||
: null,
|
||||
child: TextField(
|
||||
decoration:
|
||||
Helpers.textFieldSelectorDecoration(
|
||||
TranslationBase.of(context)
|
||||
.doctor,
|
||||
_selectedDoctor != null
|
||||
? _selectedDoctor[
|
||||
'DoctorName']
|
||||
: null,
|
||||
true),
|
||||
enabled: false,
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 16,
|
||||
),
|
||||
AppText(
|
||||
TranslationBase.of(context).patientDetails,
|
||||
fontWeight: FontWeight.bold,
|
||||
fontSize: SizeConfig.textMultiplier * 2.5,
|
||||
),
|
||||
SizedBox(
|
||||
height: 10,
|
||||
),
|
||||
CheckboxListTile(
|
||||
title: AppText(
|
||||
TranslationBase.of(context).patientPregnant,
|
||||
fontWeight: FontWeight.normal,
|
||||
fontSize: SizeConfig.textMultiplier * 2.1,
|
||||
),
|
||||
value: _patientPregnant,
|
||||
onChanged: (newValue) {
|
||||
setState(() {
|
||||
_patientPregnant = newValue;
|
||||
});
|
||||
},
|
||||
controlAffinity:
|
||||
ListTileControlAffinity.leading,
|
||||
contentPadding: EdgeInsets.all(0),
|
||||
),
|
||||
CheckboxListTile(
|
||||
title: AppText(
|
||||
TranslationBase.of(context)
|
||||
.isSickLeaveRequired,
|
||||
fontWeight: FontWeight.normal,
|
||||
fontSize: SizeConfig.textMultiplier * 2.1,
|
||||
),
|
||||
value: _isSickLeaveRequired,
|
||||
onChanged: (newValue) {
|
||||
setState(() {
|
||||
_isSickLeaveRequired = newValue;
|
||||
});
|
||||
},
|
||||
controlAffinity:
|
||||
ListTileControlAffinity.leading,
|
||||
contentPadding: EdgeInsets.all(0),
|
||||
),
|
||||
Container(
|
||||
child: TextField(
|
||||
decoration:
|
||||
Helpers.textFieldSelectorDecoration(
|
||||
TranslationBase.of(context)
|
||||
.sickLeaveComments,
|
||||
null,
|
||||
false),
|
||||
enabled: true,
|
||||
controller: _sickLeaveCommentsController,
|
||||
keyboardType: TextInputType.text,
|
||||
minLines: 2,
|
||||
maxLines: 4,
|
||||
)),
|
||||
SizedBox(
|
||||
height: 10,
|
||||
),
|
||||
Container(
|
||||
height: screenSize.height * 0.070,
|
||||
child: InkWell(
|
||||
onTap: model.dietTypesList != null &&
|
||||
model.dietTypesList.length > 0
|
||||
? () {
|
||||
openListDialogField('nameEn', 'id',
|
||||
model.dietTypesList,
|
||||
(selectedValue) {
|
||||
setState(() {
|
||||
_selectedDietType =
|
||||
selectedValue;
|
||||
});
|
||||
});
|
||||
}
|
||||
: () async {
|
||||
GifLoaderDialogUtils.showMyDialog(
|
||||
context);
|
||||
await model.getDietTypes().then(
|
||||
(_) => GifLoaderDialogUtils
|
||||
.hideDialog(context));
|
||||
if (model.state == ViewState.Idle &&
|
||||
model.dietTypesList.length >
|
||||
0) {
|
||||
openListDialogField('nameEn',
|
||||
'id', model.dietTypesList,
|
||||
(selectedValue) {
|
||||
setState(() {
|
||||
_selectedDietType =
|
||||
selectedValue;
|
||||
});
|
||||
});
|
||||
} else if (model.state ==
|
||||
ViewState.ErrorLocal) {
|
||||
DrAppToastMsg.showErrorToast(
|
||||
model.error);
|
||||
} else {
|
||||
DrAppToastMsg.showErrorToast(
|
||||
"Empty List");
|
||||
}
|
||||
},
|
||||
child: TextField(
|
||||
decoration:
|
||||
Helpers.textFieldSelectorDecoration(
|
||||
TranslationBase.of(context)
|
||||
.dietType,
|
||||
_selectedDietType != null
|
||||
? _selectedDietType['nameEn']
|
||||
: null,
|
||||
true),
|
||||
enabled: false,
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 10,
|
||||
),
|
||||
Container(
|
||||
child: TextField(
|
||||
decoration:
|
||||
Helpers.textFieldSelectorDecoration(
|
||||
TranslationBase.of(context)
|
||||
.dietTypeRemarks,
|
||||
null,
|
||||
false),
|
||||
enabled: true,
|
||||
controller: _dietTypeRemarksController,
|
||||
keyboardType: TextInputType.text,
|
||||
minLines: 4,
|
||||
maxLines: 6,
|
||||
)),
|
||||
SizedBox(
|
||||
height: 10,
|
||||
),
|
||||
Container(
|
||||
child: TextField(
|
||||
decoration:
|
||||
Helpers.textFieldSelectorDecoration(
|
||||
TranslationBase.of(context)
|
||||
.pastMedicalHistory,
|
||||
null,
|
||||
false),
|
||||
enabled: true,
|
||||
controller: _postMedicalHistoryController,
|
||||
keyboardType: TextInputType.text,
|
||||
minLines: 2,
|
||||
maxLines: 4,
|
||||
)),
|
||||
SizedBox(
|
||||
height: 10,
|
||||
),
|
||||
Container(
|
||||
child: TextField(
|
||||
decoration:
|
||||
Helpers.textFieldSelectorDecoration(
|
||||
TranslationBase.of(context)
|
||||
.pastSurgicalHistory,
|
||||
null,
|
||||
false),
|
||||
enabled: true,
|
||||
controller: _postSurgicalHistoryController,
|
||||
keyboardType: TextInputType.text,
|
||||
minLines: 2,
|
||||
maxLines: 4,
|
||||
)),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.symmetric(horizontal: 16, vertical: 8),
|
||||
child: AppButton(
|
||||
title: TranslationBase.of(context).next,
|
||||
color: HexColor("#B8382B"),
|
||||
onPressed: () {
|
||||
model.admissionRequestData = AdmissionRequest();
|
||||
if (_selectedClinic != null &&
|
||||
_selectedDoctor != null &&
|
||||
_sickLeaveCommentsController.text != "" &&
|
||||
_postMedicalHistoryController.text != "" &&
|
||||
_postSurgicalHistoryController.text != "") {
|
||||
model.admissionRequestData.patientMRN =
|
||||
patient.patientMRN;
|
||||
model.admissionRequestData.appointmentNo =
|
||||
patient.appointmentNo;
|
||||
model.admissionRequestData.episodeID =
|
||||
patient.episodeNo;
|
||||
model.admissionRequestData.admissionRequestNo = 0;
|
||||
|
||||
model.admissionRequestData.admitToClinic =
|
||||
_selectedClinic['clinicID'];
|
||||
model.admissionRequestData.mrpDoctorID =
|
||||
_selectedDoctor['DoctorID'];
|
||||
|
||||
model.admissionRequestData.isPregnant =
|
||||
_patientPregnant;
|
||||
model.admissionRequestData.isSickLeaveRequired =
|
||||
_isSickLeaveRequired;
|
||||
model.admissionRequestData.sickLeaveComments =
|
||||
_sickLeaveCommentsController.text;
|
||||
model.admissionRequestData.isDietType =
|
||||
_selectedDietType != null ? true : false;
|
||||
model.admissionRequestData.dietType =
|
||||
_selectedDietType != null
|
||||
? _selectedDietType['id']
|
||||
: 0;
|
||||
model.admissionRequestData.dietRemarks =
|
||||
_dietTypeRemarksController.text;
|
||||
model.admissionRequestData.pastMedicalHistory =
|
||||
_postMedicalHistoryController.text;
|
||||
model.admissionRequestData.pastSurgicalHistory =
|
||||
_postSurgicalHistoryController.text;
|
||||
Navigator.of(context).pushNamed(
|
||||
PATIENT_ADMISSION_REQUEST_2,
|
||||
arguments: {
|
||||
'patient': patient,
|
||||
'admission-data': model.admissionRequestData
|
||||
});
|
||||
} else {
|
||||
DrAppToastMsg.showErrorToast(
|
||||
TranslationBase.of(context).pleaseFill);
|
||||
}
|
||||
},
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Future _selectDate(BuildContext context, DateTime dateTime,
|
||||
Function(DateTime picked) updateDate) async {
|
||||
final DateTime picked = await showDatePicker(
|
||||
context: context,
|
||||
initialDate: dateTime,
|
||||
firstDate: DateTime.now(),
|
||||
lastDate: DateTime(2040),
|
||||
initialEntryMode: DatePickerEntryMode.calendar,
|
||||
);
|
||||
if (picked != null && picked != dateTime) {
|
||||
updateDate(picked);
|
||||
}
|
||||
}
|
||||
|
||||
void openListDialogField(String attributeName, String attributeValueId,
|
||||
List<dynamic> list, Function(dynamic selectedValue) okFunction) {
|
||||
ListSelectDialog dialog = ListSelectDialog(
|
||||
list: list,
|
||||
attributeName: attributeName,
|
||||
attributeValueId: attributeValueId,
|
||||
usingSearch: true,
|
||||
okText: TranslationBase.of(context).ok,
|
||||
okFunction: (selectedValue) {
|
||||
okFunction(selectedValue);
|
||||
},
|
||||
);
|
||||
showDialog(
|
||||
barrierDismissible: false,
|
||||
context: context,
|
||||
builder: (BuildContext context) {
|
||||
return dialog;
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,244 @@
|
||||
import 'package:doctor_app_flutter/config/config.dart';
|
||||
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
||||
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
||||
import 'package:doctor_app_flutter/util/date-utils.dart';
|
||||
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:hexcolor/hexcolor.dart';
|
||||
|
||||
class PatientCard extends StatelessWidget {
|
||||
final PatiantInformtion patientInfo;
|
||||
final Function onTap;
|
||||
final String patientType;
|
||||
const PatientCard({Key key, this.patientInfo, this.onTap, this.patientType}) : super(key: key);
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
padding: EdgeInsets.all(10),
|
||||
decoration: myBoxDecoration(),
|
||||
margin: EdgeInsets.only(bottom: 12),
|
||||
child: InkWell(
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Column(
|
||||
mainAxisAlignment:
|
||||
MainAxisAlignment
|
||||
.start,
|
||||
children: <
|
||||
Widget>[
|
||||
Padding(
|
||||
padding: EdgeInsets
|
||||
.only(
|
||||
left:
|
||||
12.0),
|
||||
child:
|
||||
Container(
|
||||
decoration:
|
||||
BoxDecoration(
|
||||
boxShadow: [
|
||||
BoxShadow(
|
||||
color: Color.fromRGBO(
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0.08),
|
||||
offset: Offset(0.0,
|
||||
5.0),
|
||||
blurRadius:
|
||||
16.0)
|
||||
],
|
||||
borderRadius:
|
||||
BorderRadius.all(
|
||||
Radius.circular(35.0)),
|
||||
color: Color(
|
||||
0xffCCCCCC),
|
||||
),
|
||||
width: 70,
|
||||
height: 70,
|
||||
child: Icon(
|
||||
patientInfo.genderDescription ==
|
||||
"Male"
|
||||
? DoctorApp
|
||||
.male
|
||||
: DoctorApp
|
||||
.female_icon,
|
||||
size: 70,
|
||||
color: Colors
|
||||
.white,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
SizedBox(
|
||||
width: 10,
|
||||
),
|
||||
Expanded(
|
||||
child: Column(
|
||||
crossAxisAlignment:CrossAxisAlignment.start,
|
||||
children: [
|
||||
AppText(
|
||||
patientInfo.firstName +
|
||||
" " +
|
||||
patientInfo.lastName,
|
||||
fontSize:
|
||||
2.0 * SizeConfig.textMultiplier,
|
||||
fontWeight:
|
||||
FontWeight.bold,
|
||||
backGroundcolor:
|
||||
Colors.white,
|
||||
),
|
||||
SizedBox(height: 12,),
|
||||
Table(
|
||||
border: TableBorder.symmetric(
|
||||
// inside: BorderSide(width: 2.0, color: Colors.white),
|
||||
),
|
||||
// defaultVerticalAlignment:TableCellVerticalAlignment.middle ,
|
||||
children: [
|
||||
TableRow(children: [
|
||||
Container(
|
||||
child: RichText(
|
||||
text: new TextSpan(
|
||||
style: new TextStyle(
|
||||
fontSize: 2.0 * SizeConfig.textMultiplier, color: Colors.black),
|
||||
children: <TextSpan>[
|
||||
new TextSpan(
|
||||
text: TranslationBase.of(context).fileNo,
|
||||
style: TextStyle(fontWeight: FontWeight.w700, fontSize: 2.2 * SizeConfig.textMultiplier)),
|
||||
new TextSpan(text: patientInfo.patientId.toString()),
|
||||
],),),
|
||||
),
|
||||
Container(
|
||||
child: RichText(
|
||||
text: new TextSpan(
|
||||
style: new TextStyle(
|
||||
fontSize: 2.0 * SizeConfig.textMultiplier, color: Colors.black),
|
||||
children: <TextSpan>[
|
||||
new TextSpan(
|
||||
text: TranslationBase.of(context).age+ " : ",
|
||||
style: TextStyle(fontWeight: FontWeight.w700, )),
|
||||
new TextSpan(text: "${DateUtils.getAgeByBirthday(patientInfo.dateofBirth, context)}"),
|
||||
],),),
|
||||
),
|
||||
]
|
||||
),
|
||||
TableRow(children: [
|
||||
SizedBox(height: 5,),
|
||||
SizedBox(height: 5,)
|
||||
]),
|
||||
TableRow(children: [
|
||||
Container(
|
||||
child: RichText(
|
||||
text: new TextSpan(
|
||||
style: new TextStyle(
|
||||
fontSize: 2.0 * SizeConfig.textMultiplier, color: Colors.black),
|
||||
children: <TextSpan>[
|
||||
new TextSpan(
|
||||
text: TranslationBase.of(context).nationality + " : ",
|
||||
style: TextStyle(fontWeight: FontWeight.w700, fontSize: 2.2 * SizeConfig.textMultiplier)),
|
||||
new TextSpan(text: (patientInfo.nationalityName ?? patientInfo.nationality)),
|
||||
],),),
|
||||
),
|
||||
|
||||
|
||||
Container(
|
||||
child: RichText(
|
||||
text: new TextSpan(
|
||||
style: new TextStyle(
|
||||
fontSize: 2.0 * SizeConfig.textMultiplier, color: Colors.black),
|
||||
children: <TextSpan>[
|
||||
new TextSpan(
|
||||
text: TranslationBase.of(context).gender + " : ",
|
||||
style: TextStyle(fontWeight: FontWeight.w700, )),
|
||||
new TextSpan(text: patientInfo.gender.toString() == '1' ? 'Male' : 'Female'),
|
||||
],),),
|
||||
),
|
||||
]
|
||||
),
|
||||
|
||||
],
|
||||
),
|
||||
if(SERVICES_PATIANT2[int.parse(patientType)] == "List_MyOutPatient")
|
||||
Container(
|
||||
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
Container(
|
||||
height: 15,
|
||||
width: 60,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.circular(25),
|
||||
color: HexColor("#20A169"),
|
||||
),
|
||||
child: AppText(
|
||||
patientInfo.startTime,
|
||||
color: Colors.white,
|
||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
||||
textAlign: TextAlign.center,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
width: 3.5,
|
||||
),
|
||||
Container(
|
||||
child: AppText(
|
||||
convertDateFormat2(patientInfo.appointmentDate.toString()),
|
||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 0.5,
|
||||
)
|
||||
],
|
||||
),
|
||||
margin: EdgeInsets.only(top: 8,),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
// Divider(color: Colors.grey)
|
||||
],
|
||||
),
|
||||
onTap: onTap,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
convertDateFormat2(String str) {
|
||||
String timeConvert;
|
||||
const start = "/Date(";
|
||||
const end = "+0300)";
|
||||
|
||||
final startIndex = str.indexOf(start);
|
||||
final endIndex = str.indexOf(end, startIndex + start.length);
|
||||
|
||||
var date = new DateTime.fromMillisecondsSinceEpoch(
|
||||
int.parse(str.substring(startIndex + start.length, endIndex)));
|
||||
String newDate = date.year.toString() +
|
||||
"/" +
|
||||
date.month.toString().padLeft(2, '0') +
|
||||
"/" +
|
||||
date.day.toString().padLeft(2, '0');
|
||||
|
||||
return newDate.toString();
|
||||
}
|
||||
|
||||
myBoxDecoration() {
|
||||
return BoxDecoration(
|
||||
border: Border(
|
||||
bottom: BorderSide(
|
||||
color: Color(0xffCCCCCC),
|
||||
width: 0.5,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue