bug fixes

merge-update-with-lab-changes
Sultan Khan 5 years ago
parent ccd2fc5068
commit 0213264b7f

@ -12,8 +12,8 @@ const EXA_CART_API_BASE_URL = 'https://mdlaboratories.com/exacartapi';
const PACKAGES_CATEGORIES = '/api/categories'; const PACKAGES_CATEGORIES = '/api/categories';
const PACKAGES_PRODUCTS = '/api/products'; const PACKAGES_PRODUCTS = '/api/products';
const BASE_URL = 'https://uat.hmgwebservices.com/'; //const BASE_URL = 'https://uat.hmgwebservices.com/';
// const BASE_URL = 'https://hmgwebservices.com/'; const BASE_URL = 'https://hmgwebservices.com/';
//const BASE_PHARMACY_URL = 'http://swd-pharapp-01:7200/api/'; //const BASE_PHARMACY_URL = 'http://swd-pharapp-01:7200/api/';
const BASE_PHARMACY_URL = 'https://uat.hmgwebservices.com/epharmacy/api/'; const BASE_PHARMACY_URL = 'https://uat.hmgwebservices.com/epharmacy/api/';

@ -504,11 +504,17 @@ class _LandingPageState extends State<LandingPage> with WidgetsBindingObserver {
builder: (BuildContext context) { builder: (BuildContext context) {
return new Stack( return new Stack(
children: <Widget>[ children: <Widget>[
IconButton( currentTab == 0
icon: Icon(Icons.menu), ? IconButton(
color: Colors.white, icon: Icon(Icons.menu),
onPressed: () => Scaffold.of(context).openDrawer(), color: Colors.white,
), onPressed: () => Scaffold.of(context).openDrawer(),
)
: IconButton(
icon: Icon(Icons.arrow_back),
color: Colors.white,
onPressed: () => currentTab = 0,
),
notificationCount != '' notificationCount != ''
? new Positioned( ? new Positioned(
right: projectViewModel.isArabic ? 35 : 0, right: projectViewModel.isArabic ? 35 : 0,

Loading…
Cancel
Save