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

@@ -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.'),
),
);
}
}