Merge branch 'episode_inpatient_changes' into 'development'
Episode inpatient changes See merge request Cloud_Solution/doctor_app_flutter!825merge-requests/826/merge
commit
fe193f4084
@ -1,248 +0,0 @@
|
|||||||
import 'package:doctor_app_flutter/core/enum/viewstate.dart';
|
|
||||||
import 'package:doctor_app_flutter/core/viewModel/PatientSearchViewModel.dart';
|
|
||||||
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
|
||||||
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
||||||
import 'package:doctor_app_flutter/widgets/patients/patient_card/PatientCard.dart';
|
|
||||||
import 'package:doctor_app_flutter/widgets/shared/app_loader_widget.dart';
|
|
||||||
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
|
||||||
import 'package:doctor_app_flutter/widgets/shared/errors/error_message.dart';
|
|
||||||
import 'package:doctor_app_flutter/widgets/shared/loader/gif_loader_container.dart';
|
|
||||||
import 'package:doctor_app_flutter/widgets/shared/loader/gif_loader_dialog_utils.dart';
|
|
||||||
import 'package:doctor_app_flutter/widgets/shared/text_fields/app-textfield-custom.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
||||||
|
|
||||||
import '../../routes.dart';
|
|
||||||
|
|
||||||
class InPatientPage extends StatefulWidget {
|
|
||||||
final bool isMyInPatient;
|
|
||||||
final PatientSearchViewModel patientSearchViewModel;
|
|
||||||
|
|
||||||
InPatientPage(this.isMyInPatient, this.patientSearchViewModel);
|
|
||||||
|
|
||||||
@override
|
|
||||||
_InPatientPageState createState() => _InPatientPageState();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _InPatientPageState extends State<InPatientPage> {
|
|
||||||
TextEditingController _searchController = TextEditingController();
|
|
||||||
|
|
||||||
bool isSortDes = false;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void dispose() {
|
|
||||||
_searchController.dispose();
|
|
||||||
super.dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return AppScaffold(
|
|
||||||
baseViewModel: widget.patientSearchViewModel,
|
|
||||||
isShowAppBar: false,
|
|
||||||
body: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
height: MediaQuery.of(context).size.height * 0.070,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
margin: EdgeInsets.all(16.0),
|
|
||||||
child: Stack(
|
|
||||||
children: [
|
|
||||||
AppTextFieldCustom(
|
|
||||||
hintText: TranslationBase.of(context).searchPatientName,
|
|
||||||
isTextFieldHasSuffix: true,
|
|
||||||
suffixIcon: IconButton(
|
|
||||||
icon: Icon(
|
|
||||||
Icons.search,
|
|
||||||
color: Colors.black,
|
|
||||||
),
|
|
||||||
onPressed: () {},
|
|
||||||
),
|
|
||||||
controller: _searchController,
|
|
||||||
onChanged: (value) {
|
|
||||||
widget.patientSearchViewModel.filterSearchResults(value);
|
|
||||||
}),
|
|
||||||
Positioned(
|
|
||||||
right: 35,
|
|
||||||
top: 5,
|
|
||||||
child: IconButton(
|
|
||||||
icon: Icon(
|
|
||||||
isSortDes
|
|
||||||
? FontAwesomeIcons.sortAmountDown
|
|
||||||
: FontAwesomeIcons.sortAmountUp,
|
|
||||||
color: Colors.black,
|
|
||||||
),
|
|
||||||
iconSize: 20,
|
|
||||||
// padding: EdgeInsets.only(bottom: 30),
|
|
||||||
onPressed: () {
|
|
||||||
GifLoaderDialogUtils.showMyDialog(context);
|
|
||||||
widget.patientSearchViewModel
|
|
||||||
.sortInPatient(isDes: isSortDes);
|
|
||||||
isSortDes = !isSortDes;
|
|
||||||
GifLoaderDialogUtils.hideDialog(context);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
widget.patientSearchViewModel.state == ViewState.Idle
|
|
||||||
? widget.patientSearchViewModel.filteredInPatientItems.length > 0
|
|
||||||
? (widget.isMyInPatient &&
|
|
||||||
widget.patientSearchViewModel.myIinPatientList
|
|
||||||
.length ==
|
|
||||||
0)
|
|
||||||
? NoData()
|
|
||||||
: Expanded(
|
|
||||||
child: Container(
|
|
||||||
margin: EdgeInsets.symmetric(horizontal: 16.0),
|
|
||||||
child: SingleChildScrollView(
|
|
||||||
child: Column(
|
|
||||||
// mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
ListView.builder(
|
|
||||||
itemCount: widget.patientSearchViewModel
|
|
||||||
.filteredInPatientItems.length,
|
|
||||||
scrollDirection: Axis.vertical,
|
|
||||||
physics: ScrollPhysics(),
|
|
||||||
shrinkWrap: true,
|
|
||||||
itemBuilder: (context, index) {
|
|
||||||
if (!widget.isMyInPatient)
|
|
||||||
return PatientCard(
|
|
||||||
patientInfo: widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.filteredInPatientItems[index],
|
|
||||||
patientType: "1",
|
|
||||||
arrivalType: "1",
|
|
||||||
isInpatient: true,
|
|
||||||
isMyPatient: widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.filteredInPatientItems[
|
|
||||||
index]
|
|
||||||
.doctorId ==
|
|
||||||
widget.patientSearchViewModel
|
|
||||||
.doctorProfile.doctorID,
|
|
||||||
onTap: () {
|
|
||||||
FocusScopeNode currentFocus =
|
|
||||||
FocusScope.of(context);
|
|
||||||
if (!currentFocus
|
|
||||||
.hasPrimaryFocus) {
|
|
||||||
currentFocus.unfocus();
|
|
||||||
}
|
|
||||||
|
|
||||||
Navigator.of(context).pushNamed(
|
|
||||||
PATIENTS_PROFILE,
|
|
||||||
arguments: {
|
|
||||||
"patient": widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.filteredInPatientItems[index],
|
|
||||||
"patientType": "1",
|
|
||||||
"from": "0",
|
|
||||||
"to": "0",
|
|
||||||
"isSearch": false,
|
|
||||||
"isInpatient": true,
|
|
||||||
"arrivalType": "1",
|
|
||||||
"isMyPatient": widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.filteredInPatientItems[
|
|
||||||
index]
|
|
||||||
.doctorId ==
|
|
||||||
widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.doctorProfile
|
|
||||||
.doctorID,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
);
|
|
||||||
else if (widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.filteredInPatientItems[
|
|
||||||
index]
|
|
||||||
.doctorId ==
|
|
||||||
widget.patientSearchViewModel
|
|
||||||
.doctorProfile.doctorID &&
|
|
||||||
widget.isMyInPatient)
|
|
||||||
return PatientCard(
|
|
||||||
patientInfo: widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.filteredInPatientItems[index],
|
|
||||||
patientType: "1",
|
|
||||||
arrivalType: "1",
|
|
||||||
isInpatient: true,
|
|
||||||
isMyPatient: widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.filteredInPatientItems[
|
|
||||||
index]
|
|
||||||
.doctorId ==
|
|
||||||
widget.patientSearchViewModel
|
|
||||||
.doctorProfile.doctorID,
|
|
||||||
onTap: () {
|
|
||||||
FocusScopeNode currentFocus =
|
|
||||||
FocusScope.of(context);
|
|
||||||
if (!currentFocus
|
|
||||||
.hasPrimaryFocus) {
|
|
||||||
currentFocus.unfocus();
|
|
||||||
}
|
|
||||||
|
|
||||||
Navigator.of(context).pushNamed(
|
|
||||||
PATIENTS_PROFILE,
|
|
||||||
arguments: {
|
|
||||||
"patient": widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.filteredInPatientItems[index],
|
|
||||||
"patientType": "1",
|
|
||||||
"from": "0",
|
|
||||||
"to": "0",
|
|
||||||
"isSearch": false,
|
|
||||||
"isInpatient": true,
|
|
||||||
"arrivalType": "1",
|
|
||||||
"isMyPatient": widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.filteredInPatientItems[
|
|
||||||
index]
|
|
||||||
.doctorId ==
|
|
||||||
widget
|
|
||||||
.patientSearchViewModel
|
|
||||||
.doctorProfile
|
|
||||||
.doctorID,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
);
|
|
||||||
else
|
|
||||||
return SizedBox();
|
|
||||||
}),
|
|
||||||
SizedBox(
|
|
||||||
height: 15,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
: NoData()
|
|
||||||
: NoData(),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class NoData extends StatelessWidget {
|
|
||||||
const NoData({
|
|
||||||
Key key,
|
|
||||||
}) : super(key: key);
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Expanded(
|
|
||||||
child: SingleChildScrollView(
|
|
||||||
child: Container(
|
|
||||||
child: ErrorMessage(
|
|
||||||
error: TranslationBase.of(context).noDataAvailable)),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -0,0 +1,370 @@
|
|||||||
|
import 'package:doctor_app_flutter/core/enum/viewstate.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/viewModel/PatientSearchViewModel.dart';
|
||||||
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/patients/patient_card/PatientCard.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_loader_widget.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/errors/error_message.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/loader/gif_loader_container.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/loader/gif_loader_dialog_utils.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/text_fields/app-textfield-custom.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||||
|
|
||||||
|
import '../../../routes.dart';
|
||||||
|
|
||||||
|
class InPatientListPage extends StatefulWidget {
|
||||||
|
final bool isMyInPatient;
|
||||||
|
final PatientSearchViewModel patientSearchViewModel;
|
||||||
|
|
||||||
|
InPatientListPage(this.isMyInPatient, this.patientSearchViewModel);
|
||||||
|
|
||||||
|
@override
|
||||||
|
_InPatientListPageState createState() => _InPatientListPageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _InPatientListPageState extends State<InPatientListPage> {
|
||||||
|
TextEditingController _searchController = TextEditingController();
|
||||||
|
|
||||||
|
bool isSortDes = false;
|
||||||
|
bool isAllClinic = true;
|
||||||
|
bool showBottomSheet = false;
|
||||||
|
String selectedClinicName;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_searchController.dispose();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return AppScaffold(
|
||||||
|
baseViewModel: widget.patientSearchViewModel,
|
||||||
|
isShowAppBar: false,
|
||||||
|
body: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
// Container(
|
||||||
|
// height: MediaQuery.of(context).size.height * 0.070,
|
||||||
|
// ),
|
||||||
|
Container(
|
||||||
|
margin: EdgeInsets.symmetric(horizontal: 14.0, vertical: 10),
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
InkWell(
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Radio(
|
||||||
|
value: 1,
|
||||||
|
groupValue: isAllClinic ? 1 : 2,
|
||||||
|
onChanged: (value) {
|
||||||
|
setState(() {
|
||||||
|
setState(() {
|
||||||
|
isAllClinic = true;
|
||||||
|
showBottomSheet = false;
|
||||||
|
});
|
||||||
|
widget.patientSearchViewModel
|
||||||
|
.setDefaultInPatientList();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
activeColor: Colors.red,
|
||||||
|
),
|
||||||
|
AppText("All Clinic", fontSize: 15,),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
onTap: () {
|
||||||
|
setState(() {
|
||||||
|
isAllClinic = true;
|
||||||
|
showBottomSheet = false;
|
||||||
|
});
|
||||||
|
widget.patientSearchViewModel.setDefaultInPatientList();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
InkWell(
|
||||||
|
onTap: () {
|
||||||
|
setState(() {
|
||||||
|
isAllClinic = false;
|
||||||
|
showBottomSheet = true;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Radio(
|
||||||
|
value: 2,
|
||||||
|
groupValue: isAllClinic ? 1 : 2,
|
||||||
|
onChanged: (value) {
|
||||||
|
setState(() {
|
||||||
|
setState(() {
|
||||||
|
isAllClinic = false;
|
||||||
|
showBottomSheet = true;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
activeColor: Colors.red,
|
||||||
|
),
|
||||||
|
AppText(selectedClinicName ?? "Select Clinic", fontSize: 15,),
|
||||||
|
Container(
|
||||||
|
margin: EdgeInsets.only(bottom: 10),
|
||||||
|
child: Icon(FontAwesomeIcons.sortDown))
|
||||||
|
],
|
||||||
|
)),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
margin: EdgeInsets.all(16.0),
|
||||||
|
child: Stack(
|
||||||
|
children: [
|
||||||
|
AppTextFieldCustom(
|
||||||
|
hintText: TranslationBase.of(context).searchPatientName,
|
||||||
|
isTextFieldHasSuffix: true,
|
||||||
|
suffixIcon: IconButton(
|
||||||
|
icon: Icon(
|
||||||
|
Icons.search,
|
||||||
|
color: Colors.black,
|
||||||
|
),
|
||||||
|
onPressed: () {},
|
||||||
|
),
|
||||||
|
controller: _searchController,
|
||||||
|
onChanged: (value) {
|
||||||
|
widget.patientSearchViewModel.filterSearchResults(value);
|
||||||
|
}),
|
||||||
|
Positioned(
|
||||||
|
right: 35,
|
||||||
|
top: 5,
|
||||||
|
child: IconButton(
|
||||||
|
icon: Icon(
|
||||||
|
isSortDes
|
||||||
|
? FontAwesomeIcons.sortAmountDown
|
||||||
|
: FontAwesomeIcons.sortAmountUp,
|
||||||
|
color: Colors.black,
|
||||||
|
),
|
||||||
|
iconSize: 20,
|
||||||
|
// padding: EdgeInsets.only(bottom: 30),
|
||||||
|
onPressed: () {
|
||||||
|
GifLoaderDialogUtils.showMyDialog(context);
|
||||||
|
widget.patientSearchViewModel
|
||||||
|
.sortInPatient(isDes: isSortDes);
|
||||||
|
isSortDes = !isSortDes;
|
||||||
|
GifLoaderDialogUtils.hideDialog(context);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
widget.patientSearchViewModel.state == ViewState.Idle
|
||||||
|
? widget.patientSearchViewModel.filteredInPatientItems.length > 0
|
||||||
|
? (widget.isMyInPatient &&
|
||||||
|
widget.patientSearchViewModel.myIinPatientList
|
||||||
|
.length ==
|
||||||
|
0)
|
||||||
|
? NoData()
|
||||||
|
: Expanded(
|
||||||
|
child: Container(
|
||||||
|
margin: EdgeInsets.symmetric(horizontal: 16.0),
|
||||||
|
child: NotificationListener(
|
||||||
|
child: ListView.builder(
|
||||||
|
itemCount: widget.patientSearchViewModel
|
||||||
|
.filteredInPatientItems.length,
|
||||||
|
scrollDirection: Axis.vertical,
|
||||||
|
// physics: ScrollPhysics(),
|
||||||
|
shrinkWrap: true,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
if (!widget.isMyInPatient)
|
||||||
|
return PatientCard(
|
||||||
|
patientInfo: widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.filteredInPatientItems[index],
|
||||||
|
patientType: "1",
|
||||||
|
arrivalType: "1",
|
||||||
|
isInpatient: true,
|
||||||
|
isMyPatient: widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.filteredInPatientItems[index]
|
||||||
|
.doctorId ==
|
||||||
|
widget.patientSearchViewModel
|
||||||
|
.doctorProfile.doctorID,
|
||||||
|
onTap: () {
|
||||||
|
FocusScopeNode currentFocus =
|
||||||
|
FocusScope.of(context);
|
||||||
|
if (!currentFocus.hasPrimaryFocus) {
|
||||||
|
currentFocus.unfocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
Navigator.of(context).pushNamed(
|
||||||
|
PATIENTS_PROFILE,
|
||||||
|
arguments: {
|
||||||
|
"patient": widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.filteredInPatientItems[
|
||||||
|
index],
|
||||||
|
"patientType": "1",
|
||||||
|
"from": "0",
|
||||||
|
"to": "0",
|
||||||
|
"isSearch": false,
|
||||||
|
"isInpatient": true,
|
||||||
|
"arrivalType": "1",
|
||||||
|
"isMyPatient": widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.filteredInPatientItems[
|
||||||
|
index]
|
||||||
|
.doctorId ==
|
||||||
|
widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.doctorProfile
|
||||||
|
.doctorID,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
else if (widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.filteredInPatientItems[index]
|
||||||
|
.doctorId ==
|
||||||
|
widget.patientSearchViewModel
|
||||||
|
.doctorProfile.doctorID &&
|
||||||
|
widget.isMyInPatient)
|
||||||
|
return PatientCard(
|
||||||
|
patientInfo: widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.filteredInPatientItems[index],
|
||||||
|
patientType: "1",
|
||||||
|
arrivalType: "1",
|
||||||
|
isInpatient: true,
|
||||||
|
isMyPatient: widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.filteredInPatientItems[index]
|
||||||
|
.doctorId ==
|
||||||
|
widget.patientSearchViewModel
|
||||||
|
.doctorProfile.doctorID,
|
||||||
|
onTap: () {
|
||||||
|
FocusScopeNode currentFocus =
|
||||||
|
FocusScope.of(context);
|
||||||
|
if (!currentFocus.hasPrimaryFocus) {
|
||||||
|
currentFocus.unfocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
Navigator.of(context).pushNamed(
|
||||||
|
PATIENTS_PROFILE,
|
||||||
|
arguments: {
|
||||||
|
"patient": widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.filteredInPatientItems[
|
||||||
|
index],
|
||||||
|
"patientType": "1",
|
||||||
|
"from": "0",
|
||||||
|
"to": "0",
|
||||||
|
"isSearch": false,
|
||||||
|
"isInpatient": true,
|
||||||
|
"arrivalType": "1",
|
||||||
|
"isMyPatient": widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.filteredInPatientItems[
|
||||||
|
index]
|
||||||
|
.doctorId ==
|
||||||
|
widget
|
||||||
|
.patientSearchViewModel
|
||||||
|
.doctorProfile
|
||||||
|
.doctorID,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
else
|
||||||
|
return SizedBox();
|
||||||
|
}),
|
||||||
|
onNotification: (t) {
|
||||||
|
if (isAllClinic) if (t
|
||||||
|
is ScrollUpdateNotification &&
|
||||||
|
t.metrics.pixels >=
|
||||||
|
t.metrics.maxScrollExtent - 50) {
|
||||||
|
widget.patientSearchViewModel
|
||||||
|
.addOnFilteredList();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: NoData()
|
||||||
|
: Center(
|
||||||
|
child: Container(
|
||||||
|
height: 300,
|
||||||
|
width: 300,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
bottomSheet: !showBottomSheet
|
||||||
|
? Container(
|
||||||
|
height: 0,
|
||||||
|
)
|
||||||
|
: Container(
|
||||||
|
height: 500,
|
||||||
|
color: Colors.white,
|
||||||
|
child: ListView.builder(
|
||||||
|
itemCount: widget
|
||||||
|
.patientSearchViewModel.myInpatientClinicList.length,
|
||||||
|
scrollDirection: Axis.vertical,
|
||||||
|
physics: ScrollPhysics(),
|
||||||
|
shrinkWrap: true,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
return InkWell(
|
||||||
|
onTap: () {
|
||||||
|
setState(() {
|
||||||
|
isAllClinic = false;
|
||||||
|
showBottomSheet = false;
|
||||||
|
selectedClinicName = widget.patientSearchViewModel
|
||||||
|
.myInpatientClinicList[index];
|
||||||
|
});
|
||||||
|
widget.patientSearchViewModel.filterByClinic(
|
||||||
|
clinicName: widget.patientSearchViewModel
|
||||||
|
.myInpatientClinicList[index]);
|
||||||
|
},
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Radio(
|
||||||
|
value: widget.patientSearchViewModel
|
||||||
|
.myInpatientClinicList[index],
|
||||||
|
groupValue: selectedClinicName,
|
||||||
|
onChanged: (value) {
|
||||||
|
setState(() {
|
||||||
|
setState(() {
|
||||||
|
isAllClinic = false;
|
||||||
|
showBottomSheet = false;
|
||||||
|
});
|
||||||
|
widget.patientSearchViewModel
|
||||||
|
.filterByClinic(clinicName: value);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
activeColor: Colors.red,
|
||||||
|
),
|
||||||
|
AppText(widget.patientSearchViewModel
|
||||||
|
.myInpatientClinicList[index]),
|
||||||
|
],
|
||||||
|
));
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class NoData extends StatelessWidget {
|
||||||
|
const NoData({
|
||||||
|
Key key,
|
||||||
|
}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Expanded(
|
||||||
|
child: SingleChildScrollView(
|
||||||
|
child: Container(
|
||||||
|
child: ErrorMessage(
|
||||||
|
error: TranslationBase.of(context).noDataAvailable)),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue