merge search and return medicine

merge-requests/6/head
Mohammad Aljammal 4 years ago
parent 01b230accf
commit e147787be9

@ -1,8 +1,8 @@
const MAX_SMALL_SCREEN = 660;
import 'package:diplomaticquarterapp/models/Request.dart';
import 'package:diplomaticquarterapp/uitl/app_shared_preferences.dart';
import 'dart:io';
const MAX_SMALL_SCREEN = 660;
@ -18,7 +18,8 @@ const GET_CLINICS_LIST_URL = "Services/lists.svc/REST/GetClinicCentralized";
//URL to get doctors list
const GET_DOCTORS_LIST_URL = "Services/Doctors.svc/REST/SearchDoctorsByTime";
const GET_PHARMCY_ITEMS = "/Lists.svc/REST/GetPharmcyItems_Region";
const GET_PHARMACY_LIST = "/Patients.svc/REST/GetPharmcyList";
class AppGlobal {
static var context;
AppSharedPreferences sharedPref = AppSharedPreferences();

@ -69,7 +69,7 @@ class _LandingPageState extends State<LandingPage> {
body: PageView(
physics: NeverScrollableScrollPhysics(),
controller: pageController,
children: [HomePage(), ReplayPage(), Container(), Container()],
children: [HomePage(), MedicineSearch(), Container(), Container()],
),
bottomNavigationBar: BottomNavBar(changeIndex: _changeCurrentTab),
);

Loading…
Cancel
Save