APY integrated without testing...

This commit is contained in:
2026-03-18 12:36:41 +05:30
parent 075cb3aaad
commit 8744e69ef7
29 changed files with 1069 additions and 498 deletions

View File

@@ -72,10 +72,9 @@ class _FdScreenState extends State<FdScreen> {
TextFormField(
controller: _amountController,
decoration: const InputDecoration(
labelText: 'Enter Amount',
border: OutlineInputBorder(),
prefixText: ''
),
labelText: 'Enter Amount',
border: OutlineInputBorder(),
prefixText: ''),
keyboardType: TextInputType.number,
),
const SizedBox(height: 20),
@@ -96,10 +95,8 @@ class _FdScreenState extends State<FdScreen> {
builder: (context) => const InterestRatesScreen()),
);
},
child: Text(
'Interest Rates',
style: Theme.of(context).textTheme.titleSmall
),
child: Text('Interest Rates',
style: Theme.of(context).textTheme.titleSmall),
),
],
),
@@ -228,7 +225,8 @@ class _FdScreenState extends State<FdScreen> {
// TODO: Implement proceed logic
},
style: ElevatedButton.styleFrom(
padding: const EdgeInsets.symmetric(horizontal: 40, vertical: 15),
padding:
const EdgeInsets.symmetric(horizontal: 40, vertical: 15),
),
child: const Text(
'Proceed',
@@ -241,4 +239,4 @@ class _FdScreenState extends State<FdScreen> {
),
);
}
}
}