|
|
|
|
@ -397,37 +397,46 @@ class _PatientsScreenState extends State<PatientsScreen> {
|
|
|
|
|
? Column(
|
|
|
|
|
children: [
|
|
|
|
|
Column(children: <Widget>[
|
|
|
|
|
SizedBox(height: 18.5),
|
|
|
|
|
|
|
|
|
|
Container(
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
borderRadius:
|
|
|
|
|
BorderRadius.all(Radius.circular(6.0)),
|
|
|
|
|
border: Border.all(
|
|
|
|
|
width: 1.0,
|
|
|
|
|
color: HexColor("#CCCCCC"),
|
|
|
|
|
),
|
|
|
|
|
color: Colors.white),
|
|
|
|
|
child: Column(
|
|
|
|
|
crossAxisAlignment:
|
|
|
|
|
CrossAxisAlignment.start,
|
|
|
|
|
children: [
|
|
|
|
|
Padding(
|
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
|
left: 10, top: 10),
|
|
|
|
|
child: AppText(
|
|
|
|
|
TranslationBase.of(context)
|
|
|
|
|
.selectYourProject,
|
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
|
)),
|
|
|
|
|
AppTextFormField(
|
|
|
|
|
// focusNode: focusProject,
|
|
|
|
|
controller: _controller,
|
|
|
|
|
borderColor: Colors.white,
|
|
|
|
|
suffixIcon: Icons.arrow_drop_down,
|
|
|
|
|
onTap: () {},
|
|
|
|
|
)
|
|
|
|
|
])),
|
|
|
|
|
// Container(
|
|
|
|
|
// width: SizeConfig.screenWidth * 0.9,
|
|
|
|
|
// height: 75,
|
|
|
|
|
// decoration: BoxDecoration(
|
|
|
|
|
// borderRadius:
|
|
|
|
|
// BorderRadius.all(Radius.circular(6.0)),
|
|
|
|
|
// border: Border.all(
|
|
|
|
|
// width: 1.0,
|
|
|
|
|
// color: HexColor("#CCCCCC"),
|
|
|
|
|
// ),
|
|
|
|
|
// color: Colors.white),
|
|
|
|
|
// child: Column(
|
|
|
|
|
// crossAxisAlignment:
|
|
|
|
|
// CrossAxisAlignment.start,
|
|
|
|
|
// children: [
|
|
|
|
|
// Padding(
|
|
|
|
|
// padding: EdgeInsets.only(
|
|
|
|
|
// left: 10, top: 10),
|
|
|
|
|
// child: AppText(
|
|
|
|
|
// TranslationBase.of(context)
|
|
|
|
|
// .searchPatientName,
|
|
|
|
|
// fontSize: 13,
|
|
|
|
|
// )),
|
|
|
|
|
// AppTextFormField(
|
|
|
|
|
// // focusNode: focusProject,
|
|
|
|
|
// controller: _controller,
|
|
|
|
|
// borderColor: Colors.white,
|
|
|
|
|
// prefix: IconButton(
|
|
|
|
|
// icon: Icon(
|
|
|
|
|
// DoctorApp.filter_1,
|
|
|
|
|
// color: Colors.black,
|
|
|
|
|
// ),
|
|
|
|
|
// iconSize: 20,
|
|
|
|
|
// padding:
|
|
|
|
|
// EdgeInsets.only(bottom: 30),
|
|
|
|
|
// ),
|
|
|
|
|
// onChanged: (String str) {
|
|
|
|
|
// this.searchData(str);
|
|
|
|
|
// }),
|
|
|
|
|
// ])),
|
|
|
|
|
|
|
|
|
|
// Container(
|
|
|
|
|
// width: SizeConfig.screenWidth * 0.9,
|
|
|
|
|
@ -467,7 +476,7 @@ class _PatientsScreenState extends State<PatientsScreen> {
|
|
|
|
|
// child: _locationBar(context)
|
|
|
|
|
child:
|
|
|
|
|
SERVICES_PATIANT2[int.parse(patientType)] ==
|
|
|
|
|
"patientArrivalList"
|
|
|
|
|
"List_MyOutPatient"
|
|
|
|
|
? _locationBar(context, model)
|
|
|
|
|
: Container(),
|
|
|
|
|
)
|
|
|
|
|
@ -539,7 +548,9 @@ class _PatientsScreenState extends State<PatientsScreen> {
|
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
|
left: 10, top: 10),
|
|
|
|
|
child: AppText(
|
|
|
|
|
TranslationBase.of(context).searchPatientName,
|
|
|
|
|
TranslationBase.of(
|
|
|
|
|
context)
|
|
|
|
|
.searchPatientName,
|
|
|
|
|
fontSize: 13,
|
|
|
|
|
)),
|
|
|
|
|
AppTextFormField(
|
|
|
|
|
|