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_PRODUCTS = '/api/products';
const BASE_URL = 'https://uat.hmgwebservices.com/';
// const BASE_URL = 'https://hmgwebservices.com/';
//const BASE_URL = 'https://uat.hmgwebservices.com/';
const BASE_URL = 'https://hmgwebservices.com/';
//const BASE_PHARMACY_URL = 'http://swd-pharapp-01:7200/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) {
return new Stack(
children: <Widget>[
IconButton(
icon: Icon(Icons.menu),
color: Colors.white,
onPressed: () => Scaffold.of(context).openDrawer(),
),
currentTab == 0
? IconButton(
icon: Icon(Icons.menu),
color: Colors.white,
onPressed: () => Scaffold.of(context).openDrawer(),
)
: IconButton(
icon: Icon(Icons.arrow_back),
color: Colors.white,
onPressed: () => currentTab = 0,
),
notificationCount != ''
? new Positioned(
right: projectViewModel.isArabic ? 35 : 0,

Loading…
Cancel
Save