WIP
This commit is contained in:
parent
ccc4d4c717
commit
30b3568541
|
@ -80,7 +80,11 @@ Widget buildDetails(
|
|||
),
|
||||
if (getStatus(visitaWrapItem['VAW_STATUS']) !=
|
||||
status.active) // RECALL ACTION
|
||||
FlutterFlowIconButton(
|
||||
FFButtonWidget(
|
||||
text: FFLocalizations.of(context).getVariableText(
|
||||
ptText: 'Reagendar',
|
||||
enText: 'Reschedule',
|
||||
),
|
||||
icon: const Icon(Icons.refresh),
|
||||
onPressed: () async {
|
||||
Navigator.pop(context);
|
||||
|
@ -100,6 +104,17 @@ Widget buildDetails(
|
|||
}.withoutNulls,
|
||||
);
|
||||
},
|
||||
options: FFButtonOptions(
|
||||
width: 130,
|
||||
height: 40,
|
||||
color: FlutterFlowTheme.of(context).primaryBackground,
|
||||
elevation: 0,
|
||||
borderSide: BorderSide(
|
||||
color: FlutterFlowTheme.of(context).primaryBackground,
|
||||
width: 1,
|
||||
),
|
||||
// borderRadius: 12,
|
||||
),
|
||||
),
|
||||
if (getStatus(visitaWrapItem['VAW_STATUS']) ==
|
||||
status.active) // SHARE ACTION
|
||||
|
|
|
@ -271,6 +271,7 @@ class _VisitRequestTemplateComponentWidgetState
|
|||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
children: widget.buttons,
|
||||
),
|
||||
SizedBox(height: MediaQuery.of(context).size.height * 0.02),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in New Issue