Cheque (service & screens) & Account

This commit is contained in:
2026-02-16 11:54:34 +05:30
parent dc51690292
commit 30296be75a
16 changed files with 815 additions and 73 deletions

View File

@@ -1,3 +1,4 @@
import 'package:kmobile/features/account_opening/screens/account_opening_screen.dart';
import 'package:kmobile/features/service/screens/atm_locator_screen.dart';
import '../../../l10n/app_localizations.dart';
import 'package:flutter/material.dart';
@@ -43,7 +44,6 @@ class _ServiceScreen extends State<ServiceScreen> {
disabled: false,
),
),
const SizedBox(height: 16),
Expanded(
child: ServiceManagementTile(
icon: Symbols.question_mark,
@@ -57,7 +57,6 @@ class _ServiceScreen extends State<ServiceScreen> {
disabled: false,
),
),
const SizedBox(height: 16),
Expanded(
child: ServiceManagementTile(
icon: Symbols.location_pin,
@@ -71,7 +70,20 @@ class _ServiceScreen extends State<ServiceScreen> {
disabled: false,
),
),
// No Spacer() needed here as Expanded children will fill space
Expanded(
child: ServiceManagementTile(
icon: Symbols.box,
label: "Account Opening",
onTap: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const AccountOpeningScreen()));
},
disabled: false,
),
),
// No Spacer() needed here as Expanded children will fill space
],
),
),
@@ -122,32 +134,33 @@ class ServiceManagementTile extends StatelessWidget {
onTap:
disabled ? null : onTap, // Disable InkWell if the tile is disabled
borderRadius: BorderRadius.circular(12.0),
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 24.0, horizontal: 16.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
icon,
size: 48, // Make icon larger
color:
disabled ? theme.disabledColor : theme.colorScheme.primary,
child: Center(
child: SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Icon(
icon,
size: 48, // Make icon larger
color:
disabled ? theme.disabledColor : theme.colorScheme.primary,
),
const SizedBox(height: 12),
Text(
label,
textAlign: TextAlign.center,
style: theme.textTheme.titleLarge?.copyWith(
fontWeight: FontWeight.bold,
color: disabled
? theme.disabledColor
: theme.colorScheme.onSurface,
),
),
],
),
const SizedBox(height: 12),
Text(
label,
textAlign: TextAlign.center,
style: theme.textTheme.titleLarge?.copyWith(
fontWeight: FontWeight.bold,
color: disabled
? theme.disabledColor
: theme.colorScheme.onSurface,
),
),
],
),
),
),
),
);
}
}