fix issues on Patient card

merge-requests/927/head
Elham Rababh 4 years ago
parent 35279405af
commit f68c0fe426

@ -5,8 +5,8 @@ const ONLY_NUMBERS = "[0-9]";
const ONLY_LETTERS = "[a-zA-Z &'\"]"; const ONLY_LETTERS = "[a-zA-Z &'\"]";
const ONLY_DATE = "[0-9/]"; const ONLY_DATE = "[0-9/]";
const BASE_URL_LIVE_CARE = 'https://livecare.hmg.com/'; const BASE_URL_LIVE_CARE = 'https://livecare.hmg.com/';
// const BASE_URL = 'https://hmgwebservices.com/'; const BASE_URL = 'https://hmgwebservices.com/';
const BASE_URL = 'https://uat.hmgwebservices.com/'; // const BASE_URL = 'https://uat.hmgwebservices.com/';
const PHARMACY_ITEMS_URL = "Services/Lists.svc/REST/GetPharmcyItems_Region_enh"; const PHARMACY_ITEMS_URL = "Services/Lists.svc/REST/GetPharmcyItems_Region_enh";
const PHARMACY_LIST_URL = "Services/Patients.svc/REST/GetPharmcyList"; const PHARMACY_LIST_URL = "Services/Patients.svc/REST/GetPharmcyList";
const PATIENT_PROGRESS_NOTE_URL = const PATIENT_PROGRESS_NOTE_URL =

@ -12,6 +12,7 @@ import 'package:doctor_app_flutter/widgets/shared/user-guid/CusomRow.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:cached_network_image/cached_network_image.dart'; import 'package:cached_network_image/cached_network_image.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
import '../../../util/extenstions.dart'; import '../../../util/extenstions.dart';
@ -61,7 +62,7 @@ class PatientCard extends StatelessWidget {
decoration: Helpers.getCardBoxDecoration(), decoration: Helpers.getCardBoxDecoration(),
child: CardWithBgWidget( child: CardWithBgWidget(
padding: 0, padding: 0,
marginLeft: (!isMyPatient && isInpatient) ? 0 : 10, marginLeft: (!isMyPatient && isInpatient) ||isFromLiveCare ? 0 : 10,
marginSymmetric: isFromSearch ? 10 : 0.0, marginSymmetric: isFromSearch ? 10 : 0.0,
hasBorder: false, hasBorder: false,
bgColor: isFromLiveCare bgColor: isFromLiveCare
@ -466,11 +467,11 @@ class PatientCard extends StatelessWidget {
children: [ children: [
Container( Container(
padding: EdgeInsets.all(4), padding: EdgeInsets.all(4),
child: Image.asset( child: SvgPicture.asset(
'assets/images/livecare.png', 'assets/images/svgs/profile_screen/livecare.svg',
height: 25, height: 20,
width: 35, width: 20,
color: Colors.grey.shade700, // color: Colors.grey.shade700,
)), )),
], ],
) )
@ -480,15 +481,15 @@ class PatientCard extends StatelessWidget {
children: [ children: [
Container( Container(
padding: EdgeInsets.all(4), padding: EdgeInsets.all(4),
child: Image.asset( child: SvgPicture.asset(
patientInfo.appointmentType == patientInfo.appointmentType ==
'Regular' && 'Regular' &&
patientInfo.visitTypeId == 100 patientInfo.visitTypeId == 100
? 'assets/images/livecare.png' ? 'assets/images/svgs/profile_screen/livecare.svg'
: patientInfo.appointmentType == : patientInfo.appointmentType ==
'Walkin' 'Walkin'
? 'assets/images/walkin.png' ? 'assets/images/svgs/profile_screen/walkin.svg'
: 'assets/images/booked.png', : 'assets/images/svgs/profile_screen/booked.svg',
height: 25, height: 25,
width: 35, width: 35,
)), )),

Loading…
Cancel
Save