Skip to content

Commit

Permalink
Add read more button on vendor instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
AhsanSarwar45 committed Dec 12, 2023
1 parent 502ff66 commit edb023f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/settings/screens/reliability_instructions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,14 @@ class _SettingGroupScreenState extends State<ReliabilityInstructionsScreen> {
},
),
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"),
),
],
),
),
Expand Down

0 comments on commit edb023f

Please sign in to comment.