WIP
This commit is contained in:
parent
092d122c3b
commit
ccde7eb25e
|
@ -931,31 +931,19 @@ Widget scheduleVisit(
|
||||||
? FocusScope.of(context)
|
? FocusScope.of(context)
|
||||||
.requestFocus(_model.unfocusNode)
|
.requestFocus(_model.unfocusNode)
|
||||||
: FocusScope.of(context).unfocus(),
|
: FocusScope.of(context).unfocus(),
|
||||||
child: SizedBox(
|
child:
|
||||||
height:
|
VisitorSearchModalTemplateComponentWidget(
|
||||||
MediaQuery.of(context).size.height *
|
getVisitors: (visitorsParam) async {
|
||||||
0.7,
|
_model.visitorJsonList = visitorsParam!
|
||||||
width: MediaQuery.of(context).size.width,
|
.toList()
|
||||||
child: Padding(
|
.cast<dynamic>();
|
||||||
padding:
|
setState(() {});
|
||||||
MediaQuery.viewInsetsOf(context),
|
},
|
||||||
child:
|
getDocs: (docsParam) async {
|
||||||
VisitorSearchModalTemplateComponentWidget(
|
_model.visitorStrList =
|
||||||
getVisitors: (visitorsParam) async {
|
strListToStr(docsParam!.toList());
|
||||||
_model.visitorJsonList =
|
setState(() {});
|
||||||
visitorsParam!
|
},
|
||||||
.toList()
|
|
||||||
.cast<dynamic>();
|
|
||||||
setState(() {});
|
|
||||||
},
|
|
||||||
getDocs: (docsParam) async {
|
|
||||||
_model.visitorStrList =
|
|
||||||
strListToStr(
|
|
||||||
docsParam!.toList());
|
|
||||||
setState(() {});
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue