Available Balance in Account Statement
This commit is contained in:
@@ -10,7 +10,8 @@ import 'transaction_details_screen.dart';
|
||||
|
||||
class AccountStatementScreen extends StatefulWidget {
|
||||
final String accountNo;
|
||||
const AccountStatementScreen({super.key, required this.accountNo});
|
||||
final String balance;
|
||||
const AccountStatementScreen({super.key, required this.accountNo, required this.balance,});
|
||||
|
||||
@override
|
||||
State<AccountStatementScreen> createState() => _AccountStatementScreen();
|
||||
@@ -150,20 +151,26 @@ class _AccountStatementScreen extends State<AccountStatementScreen> {
|
||||
Text(
|
||||
"${AppLocalizations.of(context).accountNumber}: ",
|
||||
style: const TextStyle(
|
||||
fontSize: 19,
|
||||
fontSize: 17,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
Text(widget.accountNo, style: const TextStyle(fontSize: 17)),
|
||||
Text(widget.accountNo, style: const TextStyle(fontSize: 17)),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 15),
|
||||
Row(
|
||||
children: [
|
||||
Text(
|
||||
"${AppLocalizations.of(context).availableBalance}: ",
|
||||
style: const TextStyle(
|
||||
fontSize: 17,
|
||||
),
|
||||
),
|
||||
Text(widget.balance, style: const TextStyle(fontSize: 17)),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 15),
|
||||
// Text(
|
||||
// AppLocalizations.of(context).availableBalance,
|
||||
// style: const TextStyle(fontSize: 17),
|
||||
// ),
|
||||
// const SizedBox(height: 15),
|
||||
// Text(widget.accountNo, style: const TextStyle(fontSize: 17)),
|
||||
Text(
|
||||
AppLocalizations.of(context).filters,
|
||||
style: const TextStyle(fontSize: 17),
|
||||
|
Reference in New Issue
Block a user