WIP
This commit is contained in:
parent
1b06219bfa
commit
1d72138926
|
@ -46,8 +46,8 @@ class _VisitorNotFoundComponentWidgetState
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return SingleChildScrollView(
|
return SingleChildScrollView(
|
||||||
child: Container(
|
child: Container(
|
||||||
width: MediaQuery.of(context).size.width,
|
// width: MediaQuery.of(context).size.width,
|
||||||
height: MediaQuery.of(context).size.height,
|
// height: MediaQuery.of(context).size.height,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: FlutterFlowTheme.of(context).primaryBackground,
|
color: FlutterFlowTheme.of(context).primaryBackground,
|
||||||
borderRadius: const BorderRadius.only(
|
borderRadius: const BorderRadius.only(
|
||||||
|
|
|
@ -485,13 +485,9 @@ class _VisitorSearchModalTemplateComponentWidgetState
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) {
|
builder: (context) {
|
||||||
return Dialog(
|
return Dialog(
|
||||||
child: Container(
|
|
||||||
color: Colors.transparent,
|
|
||||||
width: MediaQuery.of(context).size.height * 0.1,
|
|
||||||
height: MediaQuery.of(context).size.height * 0.4,
|
|
||||||
child: VisitorNotFoundComponentWidget(
|
child: VisitorNotFoundComponentWidget(
|
||||||
doc: _model.textController.text,
|
doc: _model.textController.text,
|
||||||
)),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
).then((value) => safeSetState(() {
|
).then((value) => safeSetState(() {
|
||||||
|
|
Loading…
Reference in New Issue