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,
builder: (context) {
return Dialog(
child: VisitorNotFoundComponentWidget(
doc: _model.textController.text,
),
child: Container(
color: Colors.transparent,
width: MediaQuery.of(context).size.height * 0.1,
height: MediaQuery.of(context).size.height * 0.4,
child: VisitorNotFoundComponentWidget(
doc: _model.textController.text,
)),
);
},
).then((value) => safeSetState(() {