fix labels: provisional history, delivery schedule

This commit is contained in:
J. A. Messias 2024-12-19 12:46:23 -03:00
parent a60f27c8bb
commit b22e6815d2
3 changed files with 5 additions and 3 deletions

View File

@ -107,7 +107,7 @@ class ProvisionalHistoryState extends State<ProvisionalHistoryPage> {
Widget _title(BuildContext context, FlutterFlowTheme theme) { Widget _title(BuildContext context, FlutterFlowTheme theme) {
return Text( return Text(
FFLocalizations.of(context).getVariableText( FFLocalizations.of(context).getVariableText(
ptText: 'Histórico Provisório', ptText: 'Consultar Agendas',
enText: 'Provisional History', enText: 'Provisional History',
), ),
style: theme.headlineMedium.override( style: theme.headlineMedium.override(

View File

@ -51,7 +51,9 @@ class _DeliveryScheduleState extends State<DeliverySchedule> {
), ),
title: Text( title: Text(
FFLocalizations.of(context).getVariableText( FFLocalizations.of(context).getVariableText(
enText: 'Delivery Schedule', ptText: 'Agendar Entregas'), enText: 'Delivery Schedule',
ptText: 'Agendar Entregas',
),
style: FlutterFlowTheme.of(context).headlineMedium.override( style: FlutterFlowTheme.of(context).headlineMedium.override(
fontFamily: 'Nunito', fontFamily: 'Nunito',
color: FlutterFlowTheme.of(context).primaryText, color: FlutterFlowTheme.of(context).primaryText,

View File

@ -35,7 +35,7 @@ class MenuEntry implements BaseModule {
key: 'FRE-HUB-AGE-PROV-DELIVERY', key: 'FRE-HUB-AGE-PROV-DELIVERY',
icon: Icons.sports_motorsports_outlined, icon: Icons.sports_motorsports_outlined,
name: FFLocalizations.of(navigatorKey.currentContext!).getVariableText( name: FFLocalizations.of(navigatorKey.currentContext!).getVariableText(
ptText: 'Agendar Delivery', ptText: 'Agendar Entregas',
enText: 'Schedule Delivery', enText: 'Schedule Delivery',
), ),
route: '/deliverySchedule', route: '/deliverySchedule',