Merge branch 'development' of https://gitlab.com/Cloud_Solution/doctor_app_flutter into doctor-app-design

doctor-app-design
hussam al-habibeh 4 years ago
commit fca6990938

@ -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
@ -317,6 +318,7 @@ class PatientCard extends StatelessWidget {
), ),
]), ]),
), ),
if(nationalityName.isNotEmpty)
Expanded( Expanded(
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.end, mainAxisAlignment: MainAxisAlignment.end,
@ -466,11 +468,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 +482,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,
)), )),

@ -41,6 +41,10 @@ class _BottomNavBarState extends State<BottomNavBar> {
elevation: 4, elevation: 4,
shape: CircularNotchedRectangle(), shape: CircularNotchedRectangle(),
color: Colors.white, color: Colors.white,
child: Container(
decoration: BoxDecoration(
border: Border.all(color: Color(0XFFEFEFEF), width: 1)
),
child: Padding( child: Padding(
padding: EdgeInsets.symmetric(horizontal: 18), padding: EdgeInsets.symmetric(horizontal: 18),
child: Row( child: Row(
@ -93,6 +97,7 @@ class _BottomNavBarState extends State<BottomNavBar> {
], ],
), ),
), ),
),
); );
} }
} }

Loading…
Cancel
Save