|
|
|
|
@ -1,11 +1,13 @@
|
|
|
|
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/models/patient/prescription/prescription_report_for_in_patient.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/routes.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/card_with_bgNew_widget.dart';
|
|
|
|
|
import 'package:doctor_app_flutter/widgets/shared/errors/dr_app_embedded_error.dart';
|
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:hexcolor/hexcolor.dart';
|
|
|
|
|
|
|
|
|
|
import 'large_avatar.dart';
|
|
|
|
|
|
|
|
|
|
@ -19,7 +21,41 @@ class PrescriptionInPatientWidget extends StatelessWidget {
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Container(
|
|
|
|
|
child: prescriptionReportForInPatientList.length == 0
|
|
|
|
|
? DrAppEmbeddedError(error: 'You don\'t have any Prescriptions')
|
|
|
|
|
? Center(
|
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
|
child: Column(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
padding: EdgeInsets.all(40),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
border:
|
|
|
|
|
Border.all(color: HexColor('#B8382C'), width: 4),
|
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(100))),
|
|
|
|
|
child: IconButton(
|
|
|
|
|
icon: Icon(
|
|
|
|
|
Icons.add,
|
|
|
|
|
size: 35,
|
|
|
|
|
),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
// openAddPrescription(context);
|
|
|
|
|
}),
|
|
|
|
|
),
|
|
|
|
|
Padding(
|
|
|
|
|
child: AppText(
|
|
|
|
|
TranslationBase.of(context).noPrescription,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
),
|
|
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
|
),
|
|
|
|
|
AppText(
|
|
|
|
|
TranslationBase.of(context).applyNow,
|
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
|
color: HexColor('#B8382C'),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
))
|
|
|
|
|
: Container(
|
|
|
|
|
margin: EdgeInsets.fromLTRB(SizeConfig.realScreenWidth * 0.05, 0,
|
|
|
|
|
SizeConfig.realScreenWidth * 0.05, 0),
|
|
|
|
|
@ -28,9 +64,12 @@ class PrescriptionInPatientWidget extends StatelessWidget {
|
|
|
|
|
itemBuilder: (BuildContext context, int index) {
|
|
|
|
|
return InkWell(
|
|
|
|
|
onTap: () {
|
|
|
|
|
Navigator.of(context).pushNamed(IN_PATIENT_PRESCRIPTIONS_DETAILS, arguments: {
|
|
|
|
|
'prescription': prescriptionReportForInPatientList[index]
|
|
|
|
|
});
|
|
|
|
|
Navigator.of(context).pushNamed(
|
|
|
|
|
IN_PATIENT_PRESCRIPTIONS_DETAILS,
|
|
|
|
|
arguments: {
|
|
|
|
|
'prescription':
|
|
|
|
|
prescriptionReportForInPatientList[index]
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
child: CardWithBgWidgetNew(
|
|
|
|
|
widget: Column(
|
|
|
|
|
|