|
|
|
|
@ -27,7 +27,7 @@ class _HomeReportPageState extends State<HomeReportPage> with SingleTickerProvid
|
|
|
|
|
@override
|
|
|
|
|
void initState() {
|
|
|
|
|
super.initState();
|
|
|
|
|
_tabController = TabController(length: 4, vsync: this);
|
|
|
|
|
_tabController = TabController(length: 3, vsync: this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
@ -86,10 +86,10 @@ class _HomeReportPageState extends State<HomeReportPage> with SingleTickerProvid
|
|
|
|
|
TranslationBase.of(context).ready,
|
|
|
|
|
style: TextStyle(fontFamily: projectViewModel.isArabic ? 'Cairo' : 'Poppins'),
|
|
|
|
|
),
|
|
|
|
|
Text(
|
|
|
|
|
TranslationBase.of(context).completed,
|
|
|
|
|
style: TextStyle(fontFamily: projectViewModel.isArabic ? 'Cairo' : 'Poppins'),
|
|
|
|
|
),
|
|
|
|
|
// Text(
|
|
|
|
|
// TranslationBase.of(context).completed,
|
|
|
|
|
// style: TextStyle(fontFamily: projectViewModel.isArabic ? 'Cairo' : 'Poppins'),
|
|
|
|
|
// ),
|
|
|
|
|
Text(
|
|
|
|
|
TranslationBase.of(context).cancelled,
|
|
|
|
|
style: TextStyle(fontFamily: projectViewModel.isArabic ? 'Cairo' : 'Poppins'),
|
|
|
|
|
@ -104,7 +104,7 @@ class _HomeReportPageState extends State<HomeReportPage> with SingleTickerProvid
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
ReportListWidget(reportList: model.reportsOrderRequestList, emailAddress: model.user.emailAddress),
|
|
|
|
|
ReportListWidget(reportList: model.reportsOrderReadyList, emailAddress: model.user.emailAddress),
|
|
|
|
|
ReportListWidget(reportList: model.reportsOrderCompletedList, emailAddress: model.user.emailAddress),
|
|
|
|
|
// ReportListWidget(reportList: model.reportsOrderCompletedList, emailAddress: model.user.emailAddress),
|
|
|
|
|
ReportListWidget(reportList: model.reportsOrderCanceledList, emailAddress: model.user.emailAddress),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
|