TPIN error fixed

This commit is contained in:
2026-01-22 11:38:57 +05:30
parent 658d1be536
commit 76acc2e330
5 changed files with 365 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
import 'package:flutter/material.dart';
import 'package:kmobile/data/models/user.dart';
import 'package:kmobile/features/cheque/screens/cheque_enquiry_screen.dart';
import 'package:kmobile/features/cheque/screens/revoke_stop_screen.dart';
import 'package:kmobile/features/cheque/screens/stop_cheque_screen.dart';
import 'package:material_symbols_icons/material_symbols_icons.dart';
import '../../../l10n/app_localizations.dart';
@@ -75,6 +76,24 @@ class _ChequeManagementScreen extends State<ChequeManagementScreen> {
},
),
),
// Expanded(
// child: ChequeManagementCardTile(
// icon: Symbols.block_sharp,
// label: "Revoke Stop",
// subtitle: "Revoke your stopped cheques so as to reuse it",
// onTap: () {
// Navigator.push(
// context,
// MaterialPageRoute(
// builder: (context) => RevokeStopSingleChequeScreen(
// users: users,
// selectedIndex: selectedAccountIndex,
// ),
// ),
// );
// },
// ),
// ),
],
),
),