added safearea to some screens. Also fixed some titlebars from wrap text
This commit is contained in:
@@ -296,9 +296,10 @@ class _FundTransferAmountScreenState extends State<FundTransferAmountScreen> {
|
||||
final loc = AppLocalizations.of(context);
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text(loc.fundTransfer),
|
||||
title: Text(loc.fundTransfer.replaceFirst(RegExp('\n'), '')),
|
||||
),
|
||||
body: Padding(
|
||||
body: SafeArea(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Form(
|
||||
key: _formKey,
|
||||
@@ -433,6 +434,7 @@ class _FundTransferAmountScreenState extends State<FundTransferAmountScreen> {
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@@ -17,7 +17,9 @@ class FundTransferScreen extends StatelessWidget {
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text(AppLocalizations.of(context).fundTransfer),
|
||||
title: Text(AppLocalizations.of(context)
|
||||
.fundTransfer
|
||||
.replaceFirst(RegExp('\n'), '')),
|
||||
),
|
||||
body: ListView(
|
||||
children: [
|
||||
|
@@ -109,9 +109,8 @@
|
||||
"gmNorth": "General Manager (North)",
|
||||
"enquiry": "Enquiry",
|
||||
"fundTransferBeneficiary": "Fund Transfer - Beneficiary",
|
||||
"fundTransfer": "Fund Transfer",
|
||||
"enterAmount": "Enter Amount",
|
||||
"accountInfo": "Account Info",
|
||||
"accountInfo": "Account \n Info",
|
||||
"customerNumber": "Customer Number",
|
||||
"productName": "Product Name",
|
||||
"accountStatus": "Account Status",
|
||||
|
Reference in New Issue
Block a user