Merge branch 'master' of https://gitlab.com/Cloud_Solution/diplomatic-quarter into Haroon
# Conflicts: # lib/pages/ContactUs/findus/hospitrals_page.dart # lib/pages/ContactUs/findus/pharmacies_page.darter_location
commit
06798ef327
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.6 KiB |
@ -0,0 +1,54 @@
|
||||
import 'package:diplomaticquarterapp/uitl/date_uitl.dart';
|
||||
|
||||
class GetPatientICProjectsModel {
|
||||
int id;
|
||||
String projectName;
|
||||
String projectNameN;
|
||||
String value;
|
||||
dynamic languageId;
|
||||
DateTime createdOn;
|
||||
String createdBy;
|
||||
dynamic editedOn;
|
||||
dynamic editedBy;
|
||||
bool isActive;
|
||||
|
||||
GetPatientICProjectsModel(
|
||||
{this.id,
|
||||
this.projectName,
|
||||
this.projectNameN,
|
||||
this.value,
|
||||
this.languageId,
|
||||
this.createdOn,
|
||||
this.createdBy,
|
||||
this.editedOn,
|
||||
this.editedBy,
|
||||
this.isActive});
|
||||
|
||||
GetPatientICProjectsModel.fromJson(Map<String, dynamic> json) {
|
||||
id = json['id'];
|
||||
projectName = json['ProjectName'];
|
||||
projectNameN = json['ProjectNameN'];
|
||||
value = json['Value'];
|
||||
languageId = json['LanguageId'];
|
||||
createdOn = DateUtil.convertStringToDate(json['CreatedOn']);
|
||||
createdBy = json['CreatedBy'];
|
||||
editedOn = json['EditedOn'];
|
||||
editedBy = json['EditedBy'];
|
||||
isActive = json['IsActive'];
|
||||
}
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||
data['id'] = this.id;
|
||||
data['ProjectName'] = this.projectName;
|
||||
data['ProjectNameN'] = this.projectNameN;
|
||||
data['Value'] = this.value;
|
||||
data['LanguageId'] = this.languageId;
|
||||
data['CreatedOn'] = this.createdOn;
|
||||
data['CreatedBy'] = this.createdBy;
|
||||
data['EditedOn'] = this.editedOn;
|
||||
data['EditedBy'] = this.editedBy;
|
||||
data['IsActive'] = this.isActive;
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,39 @@
|
||||
import 'package:diplomaticquarterapp/config/config.dart';
|
||||
import 'package:diplomaticquarterapp/config/shared_pref_kay.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/contactus/get_hmg_locations.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/contactus/get_patientI_cprojects.dart';
|
||||
import '../base_service.dart';
|
||||
|
||||
class LiveChatService extends BaseService{
|
||||
|
||||
|
||||
|
||||
|
||||
List<GetPatientICProjectsModel> LivechatModelList=List();
|
||||
|
||||
|
||||
Map<String, dynamic> body = Map();
|
||||
|
||||
|
||||
|
||||
Future getAllLiveChatOrders() async {
|
||||
hasError = false;
|
||||
body['List_PatientICProjects'] =false;
|
||||
await baseAppClient.post(GET_LIVECHAT_REQUEST,
|
||||
onSuccess: (dynamic response, int statusCode) {
|
||||
LivechatModelList.clear();
|
||||
|
||||
|
||||
response['List_PatientICProjects'].forEach((vital) {
|
||||
|
||||
LivechatModelList.add(GetPatientICProjectsModel.fromJson(vital));
|
||||
|
||||
});
|
||||
}, onFailure: (String error, int statusCode) {
|
||||
hasError = true;
|
||||
super.error = error;
|
||||
}, body: body);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@ -0,0 +1,33 @@
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/model/contactus/get_patientI_cprojects.dart';
|
||||
import 'package:diplomaticquarterapp/core/service/contactus/livechat_service.dart';
|
||||
import '../base_view_model.dart';
|
||||
import '../../../locator.dart';
|
||||
|
||||
|
||||
class LiveChatViewModel extends BaseViewModel{
|
||||
|
||||
|
||||
|
||||
LiveChatService _liveChatService =locator<LiveChatService>();
|
||||
|
||||
List<GetPatientICProjectsModel> get LiveChatModelList=>
|
||||
|
||||
_liveChatService.LivechatModelList;
|
||||
|
||||
|
||||
getLiveChatRequestOrders() async {
|
||||
setState(ViewState.Busy);
|
||||
|
||||
await _liveChatService.getAllLiveChatOrders();
|
||||
|
||||
if (_liveChatService.hasError) {
|
||||
error = _liveChatService.error;
|
||||
setState(ViewState.Error);
|
||||
} else
|
||||
setState(ViewState.Idle);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@ -0,0 +1,94 @@
|
||||
// import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
// import 'package:diplomaticquarterapp/widgets/data_display/medical/medical_profile_item.dart';
|
||||
// import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
// import 'package:diplomaticquarterapp/widgets/transitions/fade_page.dart';
|
||||
// import 'package:flutter/material.dart';
|
||||
//
|
||||
// import 'health_converter/blood_sugar.dart';
|
||||
//
|
||||
// class HealthConverter extends StatefulWidget {
|
||||
// @override
|
||||
// _HealthConverterState createState() => _HealthConverterState();
|
||||
// }
|
||||
//
|
||||
// class _HealthConverterState extends State<HealthConverter> {
|
||||
// @override
|
||||
// Widget build(BuildContext context) {
|
||||
// return AppScaffold(
|
||||
// isShowAppBar: true,
|
||||
// appBarTitle: 'Health Converter',
|
||||
// body: Column(
|
||||
// children: [
|
||||
// Container(
|
||||
// width: double.infinity,
|
||||
// height: 30,
|
||||
// ),
|
||||
// Row(
|
||||
// children: [
|
||||
// Expanded(
|
||||
// flex: 1,
|
||||
// child: InkWell(
|
||||
// onTap: () {
|
||||
// Navigator.push(
|
||||
// context,
|
||||
// FadePage(page: BloodSugar()),
|
||||
// );
|
||||
// },
|
||||
// child: MedicalProfileItem(
|
||||
// title: 'Blood',
|
||||
// imagePath: 'blood_sugar_icon.png',
|
||||
// subTitle: 'Sugar',
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// Expanded(
|
||||
// flex: 1,
|
||||
// child: InkWell(
|
||||
// onTap: () {
|
||||
// Navigator.push(
|
||||
// context,
|
||||
// FadePage(
|
||||
// // page: [](),
|
||||
// ),
|
||||
// );
|
||||
// },
|
||||
// child: MedicalProfileItem(
|
||||
// title: 'Blood',
|
||||
// imagePath: 'blood_cholesterol_icon.png',
|
||||
// subTitle: 'Cholesterol',
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// ],
|
||||
// ),
|
||||
// Row(
|
||||
// children: [
|
||||
// Expanded(
|
||||
// flex: 1,
|
||||
// child: InkWell(
|
||||
// onTap: () {
|
||||
// Navigator.push(
|
||||
// context,
|
||||
// FadePage(
|
||||
// // page: [](),
|
||||
// ),
|
||||
// );
|
||||
// },
|
||||
// child: MedicalProfileItem(
|
||||
// title: 'Triglycerides',
|
||||
// imagePath: 'triglycerides_blood_icon.png',
|
||||
// subTitle: 'Fat in blood',
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// Expanded(
|
||||
// flex: 1,
|
||||
// child: Container(),
|
||||
// ),
|
||||
// ],
|
||||
// )
|
||||
// ],
|
||||
// ),
|
||||
// );
|
||||
// }
|
||||
// }
|
||||
@ -0,0 +1,208 @@
|
||||
// import 'package:diplomaticquarterapp/widgets/buttons/button.dart';
|
||||
// import 'package:diplomaticquarterapp/widgets/buttons/secondary_button.dart';
|
||||
// import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
// import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
// import 'package:flutter/material.dart';
|
||||
// import 'package:flutter/services.dart';
|
||||
//
|
||||
// const activeCardColor = Color(0xff70777A);
|
||||
// const inactiveCardColor = Color(0xffFAFAFd);
|
||||
//
|
||||
// class BloodSugar extends StatefulWidget {
|
||||
// @override
|
||||
// _BloodSugarState createState() => _BloodSugarState();
|
||||
// }
|
||||
//
|
||||
// Color color;
|
||||
//
|
||||
// class _BloodSugarState extends State<BloodSugar> {
|
||||
// Color cardMGColor = inactiveCardColor;
|
||||
// Color cardMMOLColor = inactiveCardColor;
|
||||
//
|
||||
// void updateColor(int type) {
|
||||
// //MG/DLT card
|
||||
// if (type == 1) {
|
||||
// if (cardMGColor == inactiveCardColor) {
|
||||
// cardMGColor = activeCardColor;
|
||||
// cardMMOLColor = inactiveCardColor;
|
||||
// } else {
|
||||
// cardMGColor = inactiveCardColor;
|
||||
// }
|
||||
// }
|
||||
// if (type == 2) {
|
||||
// if (cardMMOLColor == inactiveCardColor) {
|
||||
// cardMMOLColor = activeCardColor;
|
||||
// cardMGColor = inactiveCardColor;
|
||||
// } else {
|
||||
// cardMMOLColor = inactiveCardColor;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// bool _visible = false;
|
||||
//
|
||||
// TextEditingController textController = new TextEditingController();
|
||||
// String finalValue;
|
||||
//
|
||||
// @override
|
||||
// Widget build(BuildContext context) {
|
||||
// return AppScaffold(
|
||||
// isShowAppBar: true,
|
||||
// appBarTitle: 'Blood Sugar Conversion',
|
||||
// body: Padding(
|
||||
// padding: const EdgeInsets.all(16.0),
|
||||
// child: Column(
|
||||
// //crossAxisAlignment: CrossAxisAlignment.start,
|
||||
// children: [
|
||||
// Container(
|
||||
// width: 350.0,
|
||||
// child: Text(
|
||||
// 'Convert blood sugar/glucose from mmol/l (UK standard) to mg/dlt (US standard) and vice versa.',
|
||||
// //textAlign: TextAlign.center,
|
||||
// style: TextStyle(fontSize: 20.0),
|
||||
// ),
|
||||
// ),
|
||||
// SizedBox(
|
||||
// height: 15.0,
|
||||
// ),
|
||||
// Container(
|
||||
// color: Colors.white,
|
||||
// height: 120.0,
|
||||
// child: Padding(
|
||||
// padding: const EdgeInsets.all(8.0),
|
||||
// child: Column(
|
||||
// //crossAxisAlignment: CrossAxisAlignment.end,
|
||||
// children: [
|
||||
// Padding(
|
||||
// padding: const EdgeInsets.symmetric(horizontal: 15.0),
|
||||
// child: Row(
|
||||
// children: [
|
||||
// Texts(
|
||||
// 'Convert from',
|
||||
// )
|
||||
// ],
|
||||
// ),
|
||||
// ),
|
||||
// SizedBox(
|
||||
// height: 9.0,
|
||||
// ),
|
||||
// Row(
|
||||
// mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
// children: [
|
||||
// GestureDetector(
|
||||
// onTap: () {
|
||||
// setState(() {
|
||||
// updateColor(1);
|
||||
// finalValue = textController.text * 3;
|
||||
// });
|
||||
// },
|
||||
// child: Container(
|
||||
// height: 55.0,
|
||||
// width: 150.0,
|
||||
// decoration: BoxDecoration(
|
||||
// color: cardMGColor,
|
||||
// borderRadius: BorderRadius.circular(10.0),
|
||||
// ),
|
||||
// child: Padding(
|
||||
// padding: const EdgeInsets.symmetric(
|
||||
// vertical: 0.0, horizontal: 18.0),
|
||||
// child: Texts('MG/DLt TO \nMMOL/L'),
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// GestureDetector(
|
||||
// onTap: () {
|
||||
// setState(() {
|
||||
// updateColor(2);
|
||||
// finalValue = textController.text * 6;
|
||||
// });
|
||||
// },
|
||||
// child: Container(
|
||||
// height: 55.0,
|
||||
// width: 150.0,
|
||||
// decoration: BoxDecoration(
|
||||
// color: cardMMOLColor,
|
||||
// borderRadius: BorderRadius.circular(10.0),
|
||||
// ),
|
||||
// child: Padding(
|
||||
// padding:
|
||||
// const EdgeInsets.symmetric(horizontal: 16.0),
|
||||
// child: Texts('MG/DLt TO\n MMOL/L'),
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// ],
|
||||
// ),
|
||||
// ],
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// SizedBox(
|
||||
// height: 25.0,
|
||||
// ),
|
||||
// Container(
|
||||
// height: 55.0,
|
||||
// color: Colors.white,
|
||||
// child: TextFormField(
|
||||
// controller: textController,
|
||||
// inputFormatters: <TextInputFormatter>[
|
||||
// FilteringTextInputFormatter.digitsOnly
|
||||
// ],
|
||||
// keyboardType: TextInputType.number,
|
||||
// decoration: InputDecoration(
|
||||
// labelText: " Enter the reading value",
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// SizedBox(
|
||||
// height: 5.0,
|
||||
// ),
|
||||
// Visibility(
|
||||
// visible: _visible,
|
||||
// child: Container(
|
||||
// height: 95.0,
|
||||
// width: 350.0,
|
||||
// decoration: BoxDecoration(
|
||||
// color: Colors.white,
|
||||
// border: Border.all(color: Colors.black),
|
||||
// borderRadius: BorderRadius.circular(15.0),
|
||||
// ),
|
||||
// child: Padding(
|
||||
// padding: const EdgeInsets.all(8.0),
|
||||
// child: Column(
|
||||
// crossAxisAlignment: CrossAxisAlignment.start,
|
||||
// mainAxisAlignment: MainAxisAlignment.center,
|
||||
// children: [
|
||||
// Texts('Result:'),
|
||||
// Text(
|
||||
// finalValue.toString(),
|
||||
// style: TextStyle(fontSize: 35.0),
|
||||
// ),
|
||||
// ],
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// SizedBox(
|
||||
// height: 15.0,
|
||||
// ),
|
||||
// Flexible(
|
||||
// child: Container(
|
||||
// height: 100.0,
|
||||
// width: 150.0,
|
||||
// child: Button(
|
||||
// label: 'CALCULATE',
|
||||
// onTap: () {
|
||||
// setState(() {
|
||||
// _visible = !_visible;
|
||||
// });
|
||||
// },
|
||||
// ),
|
||||
// ),
|
||||
// ),
|
||||
// ],
|
||||
// ),
|
||||
// ),
|
||||
// );
|
||||
// }
|
||||
// }
|
||||
@ -0,0 +1,169 @@
|
||||
import 'package:diplomaticquarterapp/core/viewModels/contactus/findus_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/contactus/livechat_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/buttons/button.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:url_launcher/url_launcher.dart';
|
||||
|
||||
class HospitalsLiveChatPage extends StatefulWidget {
|
||||
@override
|
||||
_HospitalsLiveChatPageState createState() => _HospitalsLiveChatPageState();
|
||||
}
|
||||
|
||||
class _HospitalsLiveChatPageState extends State<HospitalsLiveChatPage> {
|
||||
int tappedIndex;
|
||||
String chat;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
tappedIndex = -1;
|
||||
chat = "";
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<LiveChatViewModel>(
|
||||
onModelReady: (model) => model.getLiveChatRequestOrders(),
|
||||
builder: (_, model, widget) => AppScaffold(
|
||||
baseViewModel: model,
|
||||
body: SingleChildScrollView(
|
||||
child: Container(
|
||||
margin: EdgeInsets.only(left: 15, right: 15),
|
||||
child: Column(
|
||||
children: [
|
||||
SizedBox(
|
||||
height: 20,
|
||||
),
|
||||
Container(
|
||||
width: double.infinity,
|
||||
height: 200,
|
||||
decoration: BoxDecoration(
|
||||
image: DecorationImage(
|
||||
image: ExactAssetImage(
|
||||
'assets/images/dashboard_top_bg.png'),
|
||||
fit: BoxFit.cover),
|
||||
),
|
||||
child: Texts(
|
||||
'You can now talk directly to the appointments department by chat or request a call back\n \nChoose Hospital :',
|
||||
color: Colors.white,
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
),
|
||||
///////////
|
||||
...List.generate(
|
||||
model.LiveChatModelList.length,
|
||||
(index) => Container(
|
||||
margin:
|
||||
EdgeInsets.only(left: 20, right: 20, bottom: 20),
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.rectangle,
|
||||
border: Border.all(color: Colors.white, width: 0.5),
|
||||
borderRadius: BorderRadius.all(Radius.circular(5)),
|
||||
color: tappedIndex == index
|
||||
? Colors.red
|
||||
: Colors.white,
|
||||
),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: <Widget>[
|
||||
InkWell(
|
||||
onTap: () {
|
||||
setState(() {
|
||||
tappedIndex = index;
|
||||
chat =
|
||||
"http://chat.dshmg.com:7788/hmgchatapp/hmgchattest/Index.aspx?Name=${model.user.firstName}&PatientID=${model.user.patientID}&MobileNo=${model.user.mobileNumber}&Language=en&WorkGroup=${model.LiveChatModelList[index].value}";
|
||||
});
|
||||
},
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.end,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: Row(
|
||||
mainAxisAlignment:
|
||||
MainAxisAlignment.spaceAround,
|
||||
crossAxisAlignment:
|
||||
CrossAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
flex: 4,
|
||||
child: Container(
|
||||
margin: EdgeInsets.only(
|
||||
left: 5, right: 5),
|
||||
child: Texts(
|
||||
'${model.LiveChatModelList[index].projectName}',
|
||||
color:
|
||||
tappedIndex == index
|
||||
? Colors.white
|
||||
: Colors.black,
|
||||
textAlign:
|
||||
TextAlign.center,
|
||||
))), //model.cOCItemList[index].cOCTitl
|
||||
Expanded(
|
||||
flex: 1,
|
||||
child: Row(
|
||||
children: [
|
||||
IconButton(
|
||||
icon: Icon(
|
||||
Icons
|
||||
.arrow_forward_rounded,
|
||||
color:
|
||||
tappedIndex == index
|
||||
? Colors.white
|
||||
: Colors.black,
|
||||
),
|
||||
tooltip: '',
|
||||
onPressed: () {
|
||||
setState(() {});
|
||||
},
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
)),
|
||||
SizedBox(
|
||||
height: 100,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
bottomSheet: Container(
|
||||
height: MediaQuery.of(context).size.height * 0.13,
|
||||
width: double.infinity,
|
||||
padding: EdgeInsets.all(8.0),
|
||||
child: Center(
|
||||
child: Container(
|
||||
height: MediaQuery.of(context).size.height * 0.1,
|
||||
width: MediaQuery.of(context).size.width * 0.8,
|
||||
child: Button(
|
||||
label: 'ٍStart',
|
||||
loading: model.state == ViewState.BusyLocal,
|
||||
onTap: () {
|
||||
print("chat=" + chat);
|
||||
launch(chat);
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,117 @@
|
||||
import 'dart:ui';
|
||||
|
||||
import 'package:diplomaticquarterapp/pages/ContactUs/LiveChat/pharmaciesLivechat_page.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'hospitalsLivechat_page.dart';
|
||||
|
||||
class LiveChatPage extends StatefulWidget {
|
||||
@override
|
||||
_LiveChatPageState createState() => _LiveChatPageState();
|
||||
}
|
||||
|
||||
class _LiveChatPageState extends State<LiveChatPage> with SingleTickerProviderStateMixin{
|
||||
TabController _tabController;
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_tabController = TabController(length: 2, vsync: this);
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
super.dispose();
|
||||
_tabController.dispose();
|
||||
}
|
||||
@override
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: 'Locations',
|
||||
body: Scaffold(
|
||||
extendBodyBehindAppBar: true,
|
||||
appBar: PreferredSize(
|
||||
preferredSize: Size.fromHeight(65.0),
|
||||
child: Stack(
|
||||
children: <Widget>[
|
||||
Positioned(
|
||||
bottom: 1,
|
||||
left: 0,
|
||||
right: 0,
|
||||
child: BackdropFilter(
|
||||
filter: ImageFilter.blur(sigmaX: 10, sigmaY: 10),
|
||||
child: Container(
|
||||
color: Theme.of(context)
|
||||
.scaffoldBackgroundColor
|
||||
.withOpacity(0.8),
|
||||
height: 70.0,
|
||||
),
|
||||
),
|
||||
),
|
||||
Center(
|
||||
child: Container(
|
||||
height: 60.0,
|
||||
margin: EdgeInsets.only(top: 10.0),
|
||||
width: MediaQuery.of(context).size.width * 0.9,
|
||||
decoration: BoxDecoration(
|
||||
border: Border(
|
||||
bottom: BorderSide(
|
||||
color: Theme.of(context).dividerColor,
|
||||
width: 0.7),
|
||||
),
|
||||
color: Colors.white),
|
||||
child: Center(
|
||||
child: TabBar(
|
||||
isScrollable: true,
|
||||
controller: _tabController,
|
||||
indicatorWeight: 5.0,
|
||||
indicatorSize: TabBarIndicatorSize.label,
|
||||
indicatorColor: Colors.red[800],
|
||||
labelColor: Theme.of(context).primaryColor,
|
||||
labelPadding:
|
||||
EdgeInsets.only(top: 4.0, left: 18.0, right: 18.0),
|
||||
unselectedLabelColor: Colors.grey[800],
|
||||
tabs: [
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width * 0.30,
|
||||
child: Center(
|
||||
child: Texts(' Hospitals '),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width * 0.30,
|
||||
child: Center(
|
||||
child: Texts(' Pharmacies '),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
body: Column(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: TabBarView(
|
||||
physics: BouncingScrollPhysics(),
|
||||
controller: _tabController,
|
||||
children: <Widget>[
|
||||
HospitalsLiveChatPage(),//SendFeedbackPage(),
|
||||
PhamaciesLiveChatPage()
|
||||
//StatusFeedbackPage()
|
||||
],
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,90 @@
|
||||
import 'package:diplomaticquarterapp/core/viewModels/contactus/findus_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/core/enum/viewstate.dart';
|
||||
import 'package:diplomaticquarterapp/core/viewModels/contactus/livechat_view_model.dart';
|
||||
import 'package:diplomaticquarterapp/pages/base/base_view.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/buttons/button.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:url_launcher/url_launcher.dart';
|
||||
|
||||
class PhamaciesLiveChatPage extends StatefulWidget {
|
||||
@override
|
||||
_PhamaciesLiveChatPageState createState() => _PhamaciesLiveChatPageState();
|
||||
}
|
||||
|
||||
class _PhamaciesLiveChatPageState extends State<PhamaciesLiveChatPage> {
|
||||
int tappedIndex;
|
||||
String chat;
|
||||
|
||||
@override
|
||||
void initState()
|
||||
{
|
||||
super.initState();
|
||||
tappedIndex=-1;
|
||||
chat="";
|
||||
}
|
||||
|
||||
@override
|
||||
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<LiveChatViewModel>(
|
||||
onModelReady: (model) => model.getLiveChatRequestOrders(),
|
||||
builder: (_, model, widget) => AppScaffold(
|
||||
baseViewModel: model,
|
||||
body: SingleChildScrollView(
|
||||
child: Container(
|
||||
margin: EdgeInsets.only(left: 15,right: 15),
|
||||
child: Column(
|
||||
children: [
|
||||
SizedBox(height: 20,),
|
||||
Container(
|
||||
width: double.infinity,
|
||||
height: 200,
|
||||
decoration: BoxDecoration(
|
||||
image: DecorationImage(
|
||||
image: ExactAssetImage(
|
||||
''),
|
||||
fit: BoxFit.cover),
|
||||
),
|
||||
child: Texts('You can now talk directly to the pharmacist by chat or request a call back',color: Colors.black,textAlign: TextAlign.center,),
|
||||
|
||||
),
|
||||
///////////
|
||||
|
||||
SizedBox(height: 100,),
|
||||
|
||||
|
||||
],
|
||||
|
||||
),
|
||||
),
|
||||
),
|
||||
bottomSheet: Container(
|
||||
height: MediaQuery.of(context).size.height * 0.13,
|
||||
width: double.infinity,
|
||||
padding: EdgeInsets.all(8.0),
|
||||
child: Center(
|
||||
child: Container(
|
||||
height: MediaQuery.of(context).size.height * 0.1,
|
||||
width: MediaQuery.of(context).size.width * 0.8,
|
||||
child: Button(
|
||||
label: 'ٍStart',
|
||||
loading: model.state == ViewState.BusyLocal,
|
||||
onTap: () {
|
||||
print("chat="+chat);
|
||||
chat="http://chat.dshmg.com:7788/EPharmacyChat/EIndex.aspx?CustomerID=undefined&Name=${model.user.firstName}&MobileNo=${model.user.mobileNumber}&Language=1";
|
||||
launch(chat);
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
),
|
||||
);
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,50 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/text.dart';
|
||||
|
||||
class ServicesContainer extends StatelessWidget {
|
||||
final String title;
|
||||
final String imageLocation;
|
||||
final Function onTap;
|
||||
|
||||
ServicesContainer({this.title, this.imageLocation, this.onTap});
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return InkWell(
|
||||
onTap: () => onTap(),
|
||||
child: Container(
|
||||
height: 60,
|
||||
margin: EdgeInsets.all(8),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.white,
|
||||
shape: BoxShape.rectangle,
|
||||
borderRadius: BorderRadius.circular(7),
|
||||
),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Row(
|
||||
children: [
|
||||
Image.asset(
|
||||
imageLocation,
|
||||
height: 30,
|
||||
width: 40,
|
||||
),
|
||||
SizedBox(
|
||||
width: 20,
|
||||
),
|
||||
Texts(
|
||||
title,
|
||||
fontSize: 16,
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue