updates & fixes

merge-requests/390/merge
haroon amjad 3 years ago
parent 32f62fbe56
commit f946a7be4d

@ -224,7 +224,7 @@ class ConfirmPaymentPage extends StatelessWidget {
browser,
false,
"3",
null);
"");
}
onBrowserLoadStart(String url) {

@ -504,7 +504,7 @@ class _BookSuccessState extends State<BookSuccess> {
widget.browser,
widget.patientShareResponse.isLiveCareAppointment,
"2",
null,
"",
widget.patientShareResponse.appointmentDate,
widget.patientShareResponse.appointmentNo,
widget.patientShareResponse.clinicID,

@ -162,7 +162,7 @@ class _CovidPaymentSummaryState extends State<CovidPaymentSummary> {
widget.browser,
widget.patientShareResponse.isLiveCareAppointment,
"2",
null,
"",
widget.patientShareResponse.appointmentDate,
widget.patientShareResponse.appointmentNo,
widget.patientShareResponse.clinicID,

@ -194,7 +194,7 @@ class _ToDoState extends State<ToDo> {
? Text(
'${time.days != null ? time.days : "0"}:${time.hours != null ? time.hours.toString().length == 1 ? "0" + time.hours.toString() : time.hours : "00"}:${time.min}:${time.sec} ' +
TranslationBase.of(context).upcomingTimeLeft,
style: TextStyle(fontSize: 12.0, color: Color(0xff40ACC9)))
style: TextStyle(fontSize: 12.0, color: Color(0xffC5272D)))
: Container();
},
),
@ -243,7 +243,7 @@ class _ToDoState extends State<ToDo> {
},
child: Container(
child: Text(TranslationBase.of(context).upcomingDetails,
textAlign: TextAlign.end, style: TextStyle(fontSize: 11.0, color: new Color(0xFF40ACC9), decoration: TextDecoration.underline)),
textAlign: TextAlign.end, style: TextStyle(fontSize: 11.0, color: new Color(0xffC5272D), decoration: TextDecoration.underline)),
),
),
)
@ -632,7 +632,7 @@ class _ToDoState extends State<ToDo> {
widget.browser,
appo.isLiveCareAppointment,
"2",
null,
"",
appo.appointmentDate,
appo.appointmentNo,
appo.clinicID,

@ -212,7 +212,7 @@ class ConfirmPaymentPage extends StatelessWidget {
transID = Utils.getAdvancePaymentTransID(advanceModel.hospitalsModel.iD, int.parse(advanceModel.fileNumber));
browser.openPaymentBrowser(amount, "Advance Payment", transID, advanceModel.hospitalsModel.iD.toString(), advanceModel.email, paymentMethod, patientInfoAndMobileNumber.patientType,
advanceModel.patientName, advanceModel.fileNumber, authenticatedUser, browser, false, "3", null);
advanceModel.patientName, advanceModel.fileNumber, authenticatedUser, browser, false, "3", "");
}
onBrowserLoadStart(String url) {

Loading…
Cancel
Save