Yojna & Cheque done

This commit is contained in:
2026-03-12 13:44:13 +05:30
parent 1da7574ddb
commit dfdc293309
26 changed files with 3687 additions and 422 deletions

View File

@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
class InterestRatesScreen extends StatelessWidget {
const InterestRatesScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Interest Rates'),
),
body: const Center(
child: Text('This page will display a table of interest rates.'),
),
);
}
}