blank error fix

This commit is contained in:
2026-02-18 15:40:19 +05:30
parent d589c9bca2
commit c82a36ad89
6 changed files with 6 additions and 6 deletions

View File

@@ -65,7 +65,7 @@ class _CoverageReportPageState extends State<CoverageReportPage> {
Row(
children: [
GestureDetector(
onTap: () => Modular.to.pop(),
onTap: () => Navigator.of(context).pop(),
child: Container(
width: 40,
height: 40,

View File

@@ -64,7 +64,7 @@ class _DailyOpsReportPageState extends State<DailyOpsReportPage> {
Row(
children: [
GestureDetector(
onTap: () => Modular.to.pop(),
onTap: () => Navigator.of(context).pop(),
child: Container(
width: 40,
height: 40,

View File

@@ -64,7 +64,7 @@ class _ForecastReportPageState extends State<ForecastReportPage> {
Row(
children: [
GestureDetector(
onTap: () => Modular.to.pop(),
onTap: () => Navigator.of(context).pop(),
child: Container(
width: 40,
height: 40,

View File

@@ -58,7 +58,7 @@ class _NoShowReportPageState extends State<NoShowReportPage> {
child: Row(
children: [
GestureDetector(
onTap: () => Modular.to.pop(),
onTap: () => Navigator.of(context).pop(),
child: Container(
width: 40,
height: 40,

View File

@@ -58,7 +58,7 @@ class _PerformanceReportPageState extends State<PerformanceReportPage> {
child: Row(
children: [
GestureDetector(
onTap: () => Modular.to.pop(),
onTap: () => Navigator.of(context).pop(),
child: Container(
width: 40,
height: 40,

View File

@@ -63,7 +63,7 @@ class _SpendReportPageState extends State<SpendReportPage> {
Row(
children: [
GestureDetector(
onTap: () => Modular.to.pop(),
onTap: () => Navigator.of(context).pop(),
child: Container(
width: 40,
height: 40,