diff --git a/lib/components/templates_components/details_component/details_component_action.dart b/lib/components/templates_components/details_component/details_component_action.dart index eaec3e3d..5634c5a2 100644 --- a/lib/components/templates_components/details_component/details_component_action.dart +++ b/lib/components/templates_components/details_component/details_component_action.dart @@ -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 diff --git a/lib/components/templates_components/details_component/details_component_widget.dart b/lib/components/templates_components/details_component/details_component_widget.dart index 43e440c0..aaff0fcb 100644 --- a/lib/components/templates_components/details_component/details_component_widget.dart +++ b/lib/components/templates_components/details_component/details_component_widget.dart @@ -271,6 +271,7 @@ class _VisitRequestTemplateComponentWidgetState mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: widget.buttons, ), + SizedBox(height: MediaQuery.of(context).size.height * 0.02), ], ), ),