kmobile logo changed
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 237 KiB After Width: | Height: | Size: 316 KiB |
|
Before Width: | Height: | Size: 1006 B After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 9.3 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 8.1 KiB |
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 21 KiB |
@@ -13,29 +13,47 @@
|
|||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: Text(branch.branch_name),
|
title: Text(branch.branch_name),
|
||||||
),
|
),
|
||||||
body: SingleChildScrollView(
|
body: Stack(
|
||||||
padding: const EdgeInsets.all(16.0),
|
children: [
|
||||||
child: Column(
|
SingleChildScrollView(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
padding: const EdgeInsets.all(16.0),
|
||||||
children: [
|
child: Column(
|
||||||
_buildDetailRow("Branch Name", branch.branch_name),
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
_buildDetailRow("Branch Code", branch.branch_code),
|
children: [
|
||||||
_buildDetailRow("Zone", branch.zone),
|
_buildDetailRow("Branch Name", branch.branch_name),
|
||||||
_buildDetailRow("Tehsil", branch.tehsil),
|
_buildDetailRow("Branch Code", branch.branch_code),
|
||||||
_buildDetailRow("Block", branch.block),
|
_buildDetailRow("Zone", branch.zone),
|
||||||
_buildDetailRow("District", branch.distt_name),
|
_buildDetailRow("Tehsil", branch.tehsil),
|
||||||
_buildDetailRow("Pincode", branch.pincode),
|
_buildDetailRow("Block", branch.block),
|
||||||
// _buildDetailRow("Post Office", branch.post_office),
|
_buildDetailRow("District", branch.distt_name),
|
||||||
// _buildDetailRow("Date of Opening", branch.date_of_opening),
|
_buildDetailRow("Pincode", branch.pincode),
|
||||||
// _buildDetailRow("Branch Type", branch.type_of_branch),
|
// _buildDetailRow("Post Office", branch.post_office),
|
||||||
_buildDetailRow("Telephone No.", branch.telephone_no),
|
// _buildDetailRow("Date of Opening", branch.date_of_opening),
|
||||||
// _buildDetailRow("RTGS Account No.", branch.rtgs_acct_no),
|
// _buildDetailRow("Branch Type", branch.type_of_branch),
|
||||||
// _buildDetailRow("RBI Code 1", branch.rbi_code_1),
|
_buildDetailRow("Telephone No.", branch.telephone_no),
|
||||||
// _buildDetailRow("RBI Code 2", branch.rbi_code_2),
|
// _buildDetailRow("RTGS Account No.", branch.rtgs_acct_no),
|
||||||
// _buildDetailRow("Latitude", branch.br_lattitude),
|
// _buildDetailRow("RBI Code 1", branch.rbi_code_1),
|
||||||
// _buildDetailRow("Longitude", branch.br_longitude),
|
// _buildDetailRow("RBI Code 2", branch.rbi_code_2),
|
||||||
],
|
// _buildDetailRow("Latitude", branch.br_lattitude),
|
||||||
),
|
// _buildDetailRow("Longitude", branch.br_longitude),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
IgnorePointer(
|
||||||
|
child: Center(
|
||||||
|
child: Opacity(
|
||||||
|
opacity: 0.07, // Reduced opacity
|
||||||
|
child: ClipOval(
|
||||||
|
child: Image.asset(
|
||||||
|
'assets/images/logo.png',
|
||||||
|
width: 200, // Adjust size as needed
|
||||||
|
height: 200, // Adjust size as needed
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,13 +15,13 @@ void main() async {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
// Check for device compromise
|
// Check for device compromise
|
||||||
// final compromisedMessage = await SecurityService.deviceCompromisedMessage;
|
final compromisedMessage = await SecurityService.deviceCompromisedMessage;
|
||||||
// if (compromisedMessage != null) {
|
if (compromisedMessage != null) {
|
||||||
// runApp(MaterialApp(
|
runApp(MaterialApp(
|
||||||
// home: SecurityErrorScreen(message: compromisedMessage),
|
home: SecurityErrorScreen(message: compromisedMessage),
|
||||||
// ));
|
));
|
||||||
// return;
|
return;
|
||||||
// }
|
}
|
||||||
await setupDependencies();
|
await setupDependencies();
|
||||||
runApp(const KMobile());
|
runApp(const KMobile());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -144,4 +144,4 @@ flutter:
|
|||||||
flutter_icons:
|
flutter_icons:
|
||||||
android: true
|
android: true
|
||||||
ios: true
|
ios: true
|
||||||
image_path: assets/images/icon.png
|
image_path: assets/images/logo.png
|
||||||
|
|||||||