Compare commits

...

3 Commits

@ -128,7 +128,7 @@ class BaseAppClient {
// body['ProjectID'] = 12; // body['ProjectID'] = 12;
// body['DoctorID'] = 1002; //3844083 // body['DoctorID'] = 1002; //3844083
// body!['TokenID'] = "@dm!n"; // body['TokenID'] = "@dm!n";
// print("ProjectID :"); // print("ProjectID :");
// print(body['ProjectID']); // print(body['ProjectID']);

@ -11,12 +11,10 @@ const DOCTOR_ROTATION = 'https://doctorrota.hmg.com/';
// const BASE_URL = 'https://hmgwebservices.com/'; // const BASE_URL = 'https://hmgwebservices.com/';
// const BASE_URL = 'http://10.20.200.111:1010/'; // const BASE_URL = 'http://10.20.200.111:1010/';
const BASE_URL = 'https://uat.hmgwebservices.com/';
// const BASE_URL = 'https://hmgwebservices.com/';
// const BASE_URL = 'https://uat.hmgwebservices.com/'; // const BASE_URL = 'https://uat.hmgwebservices.com/';
const BASE_URL = 'https://hmgwebservices.com/';
// const BASE_URL = 'https://webservices.hmg.com/'; // const BASE_URL = 'https://webservices.hmg.com/';
// //
// const BASE_URL = 'https://vidauat.cloudsolutions.com.sa/'; //Vida Plus URL // const BASE_URL = 'https://vidauat.cloudsolutions.com.sa/'; //Vida Plus URL
@ -415,7 +413,7 @@ const TRANSACTION_NO = 0;
const LANGUAGE_ID = 2; const LANGUAGE_ID = 2;
const STAMP = '2020-04-27T12:17:17.721Z'; const STAMP = '2020-04-27T12:17:17.721Z';
const IP_ADDRESS = '9.9.9.9'; const IP_ADDRESS = '9.9.9.9';
const VERSION_ID = 9.9; const VERSION_ID = 10.1;
const CHANNEL = 9; const CHANNEL = 9;
const SESSION_ID = 'BlUSkYymTt'; const SESSION_ID = 'BlUSkYymTt';
const IS_LOGIN_FOR_DOCTOR_APP = true; const IS_LOGIN_FOR_DOCTOR_APP = true;

@ -9,12 +9,17 @@ class NoData extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Expanded( return Center(
child: SingleChildScrollView( child: Container(
child: Container( child: ErrorMessage(error: TranslationBase.of(context).noDataAvailable),
child: ErrorMessage(
error: TranslationBase.of(context).noDataAvailable)),
), ),
); );
// Expanded(
// child: SingleChildScrollView(
// child: Container(
// child: ErrorMessage(error: TranslationBase.of(context).noDataAvailable),
// ),
// ),
// );
} }
} }

@ -124,7 +124,7 @@ class NewPrescriptionsPage extends StatelessWidget {
), ),
CustomRow( CustomRow(
label: TranslationBase.of(context).orderTypeDescription + ': ', //"Order Type Description :", label: TranslationBase.of(context).orderTypeDescription + ': ', //"Order Type Description :",
value: model.prescriptionListNew[index].orderTypeDescription, value: model.prescriptionListNew[index].orderTypeDescription ?? "",
), ),
CustomRow( CustomRow(
label: TranslationBase.of(context).status + ': ', label: TranslationBase.of(context).status + ': ',

@ -11,7 +11,7 @@ description: A new Flutter project.
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at # Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.4.26+1 version: 1.4.28+39
environment: environment:

Loading…
Cancel
Save