Skip to content

Commit

Permalink
NEW: Added API Creator account link
Browse files Browse the repository at this point in the history
  • Loading branch information
OutdatedGuy committed Jun 23, 2022
1 parent fd4ad7b commit ff25381
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions lib/pages/SettingsPage/settings_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,19 @@ class _SettingsPageState extends State<SettingsPage> {
launchUrl(launchUri, mode: LaunchMode.externalApplication);
},
),
ListTile(
leading: const Icon(Icons.api_rounded),
title: const Text('API Creator'),
trailing: const Icon(Icons.arrow_forward),
onTap: () {
final Uri launchUri = Uri(
scheme: 'https',
host: 'github.com',
path: 'soruly',
);
launchUrl(launchUri, mode: LaunchMode.externalApplication);
},
),
ListTile(
leading: const Icon(Icons.bug_report),
title: const Text('Report a bug'),
Expand Down

0 comments on commit ff25381

Please sign in to comment.