This commit is contained in:
2025-08-06 17:26:25 +05:30
parent 2fdef7c850
commit c4d4261afc
33 changed files with 772 additions and 935 deletions

View File

@@ -38,12 +38,12 @@ class _EnquiryScreen extends State<EnquiryScreen> {
const SizedBox(height: 4),
GestureDetector(
onTap: () => _launchEmailAddress(email),
child: Text(email, style: const TextStyle(color: Colors.blue)),
child: Text(email, style: TextStyle(color: Theme.of(context).primaryColor)),
),
const SizedBox(height: 4),
GestureDetector(
onTap: () => _launchPhoneNumber(phone),
child: Text(phone, style: const TextStyle(color: Colors.blue)),
child: Text(phone, style: TextStyle(color: Theme.of(context).scaffoldBackgroundColor)),
),
],
);
@@ -92,9 +92,9 @@ class _EnquiryScreen extends State<EnquiryScreen> {
style: TextStyle(color: Colors.grey),
),
const SizedBox(height: 4),
const Text(
Text(
"complaint@kccb.in",
style: TextStyle(color: Colors.blue),
style: TextStyle(color: Theme.of(context).primaryColor),
),
SizedBox(height: 20),