hot fixing

merge-requests/237/head
Mohammad Aljammal 5 years ago
parent deb5b81cb3
commit eb5a3a59ff

@ -124,11 +124,13 @@ class _MedicalFilePageState extends State<MedicalFilePage> {
'Doctor : '.toUpperCase(),
fontWeight: FontWeight.w700,
),
AppText(
Expanded(
child: AppText(
model.medicalFileList[0].entityList[0]
.timelines[index].doctorName,
fontWeight: FontWeight.w700,
),
),
],
),
Row(

@ -466,13 +466,6 @@ class _PatientsScreenState extends State<PatientsScreen> {
height:
10.0,
),
Padding(
padding: EdgeInsets.symmetric(
vertical:
5.5,
horizontal:
22.5),
child:
AppText(
item.firstName +
" " +
@ -484,7 +477,6 @@ class _PatientsScreenState extends State<PatientsScreen> {
backGroundcolor:
Colors.white,
),
),
],
),
Row(

@ -696,7 +696,7 @@ class _PrescriptionFormWidgetState extends State<PrescriptionFormWidget> {
selectDate(BuildContext context, PrescriptionViewModel model) async {
DateTime selectedDate;
selectedDate = DateTime.now().add(Duration(hours: 10));
selectedDate = DateTime.now().add(Duration(hours: 15));
final DateTime picked = await showDatePicker(
context: context,
initialDate: selectedDate,

@ -94,7 +94,7 @@ class PatientProfileWidget extends StatelessWidget {
color: Color(0xffCCCCCC),
),
Container(
height: 10 * SizeConfig.textMultiplier,
height: 11 * SizeConfig.textMultiplier,
child: Row(
children: [
Expanded(
@ -232,7 +232,8 @@ class PatientProfileWidget extends StatelessWidget {
SizeConfig.textMultiplier,
),
),
AppText(
Expanded(
child: AppText(
patient.admissionDate != null
? "${DateUtils.convertDateFromServerFormat(patient.admissionDate, 'EEEE dd, MMMM yyyy hh:mm a')}"
: "",
@ -241,6 +242,7 @@ class PatientProfileWidget extends StatelessWidget {
fontSize:
1.6 * SizeConfig.textMultiplier,
),
),
],
),
SizedBox(
@ -374,7 +376,8 @@ class PatientProfileWidget extends StatelessWidget {
SizedBox(
width: 4,
),
AppText(
Expanded(
child: AppText(
"${patient.nursingStationName}\n${patient.roomId}",
fontWeight:
FontWeight.normal,
@ -382,6 +385,7 @@ class PatientProfileWidget extends StatelessWidget {
SizeConfig
.textMultiplier,
),
),
],
),
),

@ -505,6 +505,8 @@ class _AddExaminationDailogState extends State<AddExaminationDailog> {
baseViewModel: model,
child: MasterKeyCheckboxSearchWidget(
model: model,
hintSearchText: 'Search Examination',
buttonName: 'Add Examination',
masterList: model.physicalExaminationList,
removeHistory: (history){
setState(() {

Loading…
Cancel
Save