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,20 +59,7 @@ 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(
|
||||
icon: Icons.location_pin,
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user