This commit is contained in:
jantunesmesias 2024-08-12 14:20:54 -03:00
parent 49df453082
commit 240560e2eb
1 changed files with 7 additions and 3 deletions

View File

@ -485,9 +485,13 @@ 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(() {