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