Remarks Field in Transaction Page #3

This commit is contained in:
2025-09-16 16:47:01 +05:30
parent 8f2b981b5b
commit e466dff424
5 changed files with 9 additions and 7 deletions

View File

@@ -404,9 +404,9 @@ class _FundTransferAmountScreenState extends State<FundTransferAmountScreen> {
//Remarks
TextFormField(
controller: _remarksController,
decoration: const InputDecoration(
labelText: 'Remarks (Optional)',
border: OutlineInputBorder(),
decoration: InputDecoration(
labelText: AppLocalizations.of(context).remarks,
border: const OutlineInputBorder(),
),
),
const SizedBox(height: 24),

View File

@@ -683,7 +683,7 @@ class _QuickPayOutsideBankScreen extends State<QuickPayOutsideBankScreen> {
TextFormField(
controller: remarksController,
decoration: InputDecoration(
labelText: 'Remarks (Optional)',
labelText: AppLocalizations.of(context).remarks,
border: const OutlineInputBorder(),
isDense: true,
filled: true,

View File

@@ -281,7 +281,7 @@ class _QuickPayWithinBankScreen extends State<QuickPayWithinBankScreen> {
TextFormField(
controller: remarksController,
decoration: InputDecoration(
labelText: 'Remarks (Optional)',
labelText: AppLocalizations.of(context).remarks,
border: const OutlineInputBorder(),
isDense: true,
filled: true,

View File

@@ -313,5 +313,6 @@
"themeModeSystem": "System",
"themeModeLight": "Light",
"themeModeDark": "Dark",
"details": "Details"
"details": "Details",
"remarks": "Remarks (Optional)"
}

View File

@@ -314,5 +314,6 @@
"themeModeSystem": "सिस्टम",
"themeModeLight": "लाईट",
"themeModeDark": "डार्क",
"details": "विवरण"
"details": "विवरण",
"remarks": "विचार (अनिवार्य नहीं)"
}