Code Formatted
This commit is contained in:
@@ -68,8 +68,10 @@ class _EnquiryScreen extends State<EnquiryScreen> {
|
||||
GestureDetector(
|
||||
onTap: () => _launchPhoneNumber(phone),
|
||||
child: Text(phone,
|
||||
style:
|
||||
TextStyle(color: Theme.of(context).colorScheme.primary)), // Changed color for visibility
|
||||
style: TextStyle(
|
||||
color: Theme.of(context)
|
||||
.colorScheme
|
||||
.primary)), // Changed color for visibility
|
||||
),
|
||||
],
|
||||
);
|
||||
@@ -91,14 +93,16 @@ class _EnquiryScreen extends State<EnquiryScreen> {
|
||||
children: [
|
||||
const SizedBox(height: 20),
|
||||
GestureDetector(
|
||||
onTap: () => _launchUrl("https://kccbhp.bank.in/complaint-form/"),
|
||||
onTap: () =>
|
||||
_launchUrl("https://kccbhp.bank.in/complaint-form/"),
|
||||
child: Row(mainAxisSize: MainAxisSize.min, children: [
|
||||
Text(
|
||||
"Complaint Form",
|
||||
style: TextStyle(
|
||||
fontSize: 17,
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
decoration: TextDecoration.underline, // Added underline for link clarity
|
||||
decoration: TextDecoration
|
||||
.underline, // Added underline for link clarity
|
||||
decorationColor:
|
||||
Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
@@ -165,4 +169,4 @@ class _EnquiryScreen extends State<EnquiryScreen> {
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user