Skip to content

Commit

Permalink
feat: add extension store links for edge and firefox (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeyWie authored May 6, 2024
1 parent 54347f4 commit 53b3eea
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions ui/flutter/lib/app/modules/setting/views/setting_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,28 @@ class SettingView extends GetView<SettingController> {
buildBrowserExtension() {
return ListTile(
title: Text('browserExtension'.tr),
subtitle: const OpenInNew(
text: "Chrome",
url:
"https://chromewebstore.google.com/detail/gopeed/mijpgljlfcapndmchhjffkpckknofcnd",
));
subtitle: const Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
OpenInNew(
text: "Chrome",
url:
"https://chromewebstore.google.com/detail/gopeed/mijpgljlfcapndmchhjffkpckknofcnd",
),
SizedBox(width: 10),
OpenInNew(
text: "Edge",
url:
"https://microsoftedge.microsoft.com/addons/detail/dkajnckekendchdleoaenoophcobooce",
),
SizedBox(width: 10),
OpenInNew(
text: "Firefox",
url:
"https://addons.mozilla.org/zh-CN/firefox/addon/gopeed-extension",
),
],
).paddingOnly(top: 5, bottom: 5));
}

// http config items start
Expand Down

0 comments on commit 53b3eea

Please sign in to comment.