Test APK without sim binding
This commit is contained in:
@@ -618,7 +618,7 @@ class _DashboardScreenState extends State<DashboardScreen>
|
||||
selectedIndex: selectedAccountIndex,
|
||||
)));
|
||||
}),
|
||||
_buildQuickLink(Symbols.box, "Create FD/TD or RD", () {
|
||||
_buildQuickLink(Symbols.box, AppLocalizations.of(context).createnewdeposit, () {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
|
||||
@@ -74,7 +74,7 @@ class SecuritySettingsScreen extends StatelessWidget {
|
||||
margin: const EdgeInsets.only(bottom: 10),
|
||||
child: ListTile(
|
||||
leading: const Icon(Icons.password),
|
||||
title: const Text('Change TPIN'),
|
||||
title: Text(AppLocalizations.of(context).changeTpin),
|
||||
trailing: const Icon(Icons.chevron_right),
|
||||
onTap: () async {
|
||||
final authService = getIt<AuthService>();
|
||||
|
||||
@@ -59,19 +59,6 @@ class _ServiceScreen extends State<ServiceScreen> {
|
||||
disabled: false,
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: ServiceManagementTile(
|
||||
icon: Symbols.location_pin,
|
||||
label: AppLocalizations.of(context).atmlocator,
|
||||
onTap: () {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => const ATMLocatorScreen()));
|
||||
},
|
||||
disabled: false,
|
||||
),
|
||||
),
|
||||
|
||||
Expanded(
|
||||
child: ServiceManagementTile(
|
||||
@@ -86,6 +73,20 @@ class _ServiceScreen extends State<ServiceScreen> {
|
||||
disabled: false,
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: ServiceManagementTile(
|
||||
icon: Symbols.payment,
|
||||
label: AppLocalizations.of(context).atmlocator,
|
||||
onTap: () {
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => const ATMLocatorScreen()));
|
||||
},
|
||||
disabled: false,
|
||||
),
|
||||
),
|
||||
|
||||
Expanded(
|
||||
child: ServiceManagementTile(
|
||||
icon: Symbols.support_agent,
|
||||
|
||||
@@ -766,5 +766,6 @@
|
||||
"monthlyOption": "Monthly",
|
||||
"quarterlyOption": "Quarterly",
|
||||
"anniversaryMonthlyOption": "Anniversary Monthly",
|
||||
"anniversaryQuarterlyOption": "Anniversary Quarterly"
|
||||
"anniversaryQuarterlyOption": "Anniversary Quarterly",
|
||||
"createnewdeposit" : "Create New Deposit"
|
||||
}
|
||||
|
||||
@@ -767,5 +767,6 @@
|
||||
"monthlyOption": "मासिक",
|
||||
"quarterlyOption": "त्रैमासिक",
|
||||
"anniversaryMonthlyOption": "वर्षगांठ मासिक",
|
||||
"anniversaryQuarterlyOption": "वर्षगांठ त्रैमासिक"
|
||||
"anniversaryQuarterlyOption": "वर्षगांठ त्रैमासिक",
|
||||
"createnewdeposit" : "नया डिपॉजिट बनाएं"
|
||||
}
|
||||
|
||||
@@ -15,13 +15,13 @@ void main() async {
|
||||
]);
|
||||
|
||||
// Check for device compromise
|
||||
// final compromisedMessage = await SecurityService.deviceCompromisedMessage;
|
||||
// if (compromisedMessage != null) {
|
||||
// runApp(MaterialApp(
|
||||
// home: SecurityErrorScreen(message: compromisedMessage),
|
||||
// ));
|
||||
// return;
|
||||
// }
|
||||
final compromisedMessage = await SecurityService.deviceCompromisedMessage;
|
||||
if (compromisedMessage != null) {
|
||||
runApp(MaterialApp(
|
||||
home: SecurityErrorScreen(message: compromisedMessage),
|
||||
));
|
||||
return;
|
||||
}
|
||||
await setupDependencies();
|
||||
runApp(const KMobile());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user