PMJBY/SBY enquiry created

This commit is contained in:
2026-03-09 18:17:18 +05:30
parent 08191a8f89
commit eb81269083
8 changed files with 814 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import 'package:kmobile/data/models/user.dart';
import 'package:kmobile/features/yojna/screens/apy_screen.dart';
import 'package:kmobile/features/yojna/screens/pm_main_screen.dart';
import '../../../l10n/app_localizations.dart';
@@ -51,10 +52,18 @@ class _GovSchemeScreenState extends State<GovSchemeScreen> {
Expanded(
child: GovSchemeTile(
logoText: "APY",
label: "Atal Pension Yojana",
subtitle: "Secure your future with Atal Pension Yojana (APY) retirement scheme",
label: "Register for Atal Pension Yojana",
subtitle: "Secure your future with Atal Pension Yojana (APY) retirement scheme. Register in a few steps.",
onTap: () {
// Action for APY will be added later
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => APYScreen(
users: widget.users,
selectedIndex: widget.selectedIndex,
),
),
);// Action for APY will be added later
},
),
),