diff --git a/lib/settings/screens/reliability_instructions.dart b/lib/settings/screens/reliability_instructions.dart index e2a917f4..4010c269 100644 --- a/lib/settings/screens/reliability_instructions.dart +++ b/lib/settings/screens/reliability_instructions.dart @@ -73,7 +73,14 @@ class _SettingGroupScreenState extends State { }, ), const Text( - "Vendor instructions are provided by dontkillmyapp.com") + "Vendor instructions are provided by dontkillmyapp.com"), + TextButton( + onPressed: () async { + await launchUrl(Uri.parse( + "https://dontkillmyapp.com${widget.vendor.url}")); + }, + child: const Text("Read more"), + ), ], ), ),