Merge branch 'feat/fd-905' into feat/fd-1023
This commit is contained in:
commit
826841babc
|
@ -36,11 +36,11 @@ class _PackageOrderPage extends State<PackageOrderPage> {
|
||||||
List<dynamic> _orderList = [];
|
List<dynamic> _orderList = [];
|
||||||
|
|
||||||
final Map<String, String> filter = {
|
final Map<String, String> filter = {
|
||||||
'adresseeType': '.*',
|
'adresseeType': 'PRO',
|
||||||
'status': 'notPickedUp',
|
'status': 'notPickedUp',
|
||||||
};
|
};
|
||||||
|
|
||||||
String _adresseeType = '.*';
|
String _adresseeType = 'PRO';
|
||||||
String _status = 'notPickedUp';
|
String _status = 'notPickedUp';
|
||||||
|
|
||||||
late BehaviorSubject<Map<String, String>> _selectedTypeSubject;
|
late BehaviorSubject<Map<String, String>> _selectedTypeSubject;
|
||||||
|
@ -224,7 +224,7 @@ class _PackageOrderPage extends State<PackageOrderPage> {
|
||||||
return AppBar(
|
return AppBar(
|
||||||
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
||||||
automaticallyImplyLeading: false,
|
automaticallyImplyLeading: false,
|
||||||
title: Text(FFLocalizations.of(context).getVariableText(enText: 'My Orders', ptText: 'Minhas Encomendas'),
|
title: Text(FFLocalizations.of(context).getVariableText(enText: 'Orders', ptText: 'Encomendas'),
|
||||||
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,
|
||||||
|
|
Loading…
Reference in New Issue