Updates constant names and lint rule

This commit is contained in:
2025-07-11 14:06:06 +02:00
parent cf0d7af343
commit 546ac1d996
5 changed files with 13 additions and 14 deletions

View File

@@ -60,15 +60,15 @@ class AboutView extends StatelessWidget {
children: [
IconButton(
onPressed: () =>
launchUrl(Uri.parse(Constants.INSTAGRAM_LINK)),
launchUrl(Uri.parse(Constants.kInstagramLink)),
icon: const Icon(FontAwesomeIcons.instagram)),
IconButton(
onPressed: () =>
launchUrl(Uri.parse('mailto:${Constants.EMAIL}')),
launchUrl(Uri.parse('mailto:${Constants.kEmail}')),
icon: const Icon(CupertinoIcons.envelope)),
IconButton(
onPressed: () =>
launchUrl(Uri.parse(Constants.GITHUB_LINK)),
launchUrl(Uri.parse(Constants.kGithubLink)),
icon: const Icon(FontAwesomeIcons.github)),
],
),