Skip to content

Commit 557aedb

Browse files
committed
remove "open in browser" icon
1 parent db1ee8a commit 557aedb

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

lib/Frontend/Widgets/coshub_feed.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ class _CoshubFeedState extends ConsumerState<CoshubFeed> {
7474
elevation: 2,
7575
child: ListTile(
7676
//leading: Icon(feedItem.feedType.icon),
77-
trailing: const Icon(Icons.open_in_browser),
7877
title: Text(convertToUwU(post.username)), subtitle: post.character != null ? Text(convertToUwU(post.character!)) : null,
7978
leading: post.profileThumbnailUrl != null
8079
? ClipOval(

lib/Frontend/Widgets/tail_blog.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ class _TailBlogState extends State<TailBlog> {
8787
elevation: 2,
8888
child: ListTile(
8989
//leading: Icon(feedItem.feedType.icon),
90-
trailing: const Icon(Icons.open_in_browser),
9190
title: Text(convertToUwU(feedItem.title)),
9291
),
9392
),

lib/Frontend/pages/more.dart

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ class _MoreState extends ConsumerState<More> {
4141
title: Text(convertToUwU(morePageCoverPromoTitle())),
4242
subtitle: Text(convertToUwU(morePageCoverPromoDescription(couponCode: couponCode))),
4343
leading: const Icon(Icons.store),
44-
trailing: const Icon(Icons.open_in_browser),
4544
onTap: () async {
4645
await launchExternalUrl(url: "https://thetailcompany.com/product/tail-and-ear-covers/${getOutboundUtm()}&wdr_coupon=$couponCode", analyticsLabel: "Coupon", addTrackingUtm: false);
4746
},
@@ -55,7 +54,6 @@ class _MoreState extends ConsumerState<More> {
5554
width: 24,
5655
height: 24,
5756
),
58-
trailing: const Icon(Icons.open_in_browser),
5957
onTap: () async {
6058
await launchExternalUrl(url: "https://coshub.com", analyticsLabel: "CosHub");
6159
},
@@ -172,23 +170,20 @@ class _MoreState extends ConsumerState<More> {
172170
ListTile(
173171
title: Text(convertToUwU("Store")),
174172
leading: const Icon(Icons.store),
175-
trailing: const Icon(Icons.open_in_browser),
176173
onTap: () async {
177174
await launchExternalUrl(url: "https://thetailcompany.com", analyticsLabel: "Store");
178175
},
179176
),
180177
ListTile(
181178
title: Text(convertToUwU("Technical Wiki")),
182179
leading: const Icon(Icons.menu_book),
183-
trailing: const Icon(Icons.open_in_browser),
184180
onTap: () async {
185181
await launchExternalUrl(url: "https://docs.thetailcompany.com", analyticsLabel: "Wiki");
186182
},
187183
),
188184
ListTile(
189185
title: Text(convertToUwU("Telegram")),
190186
leading: const Icon(Icons.telegram),
191-
trailing: const Icon(Icons.open_in_browser),
192187
onTap: () async {
193188
await launchExternalUrl(url: "https://t.me/joinchat/VCdXxqKgRv2yrDNC", analyticsLabel: "Telegram", addTrackingUtm: false);
194189
},
@@ -197,7 +192,6 @@ class _MoreState extends ConsumerState<More> {
197192
title: Text(convertToUwU(morePageTranslateTitle())),
198193
subtitle: Text(convertToUwU(morePageTranslateDescription())),
199194
leading: const Icon(Icons.language),
200-
trailing: const Icon(Icons.open_in_browser),
201195
onTap: () async {
202196
await launchExternalUrl(url: "https://weblate.stargazer.at", analyticsLabel: "Weblate");
203197
},
@@ -206,15 +200,13 @@ class _MoreState extends ConsumerState<More> {
206200
title: Text(convertToUwU(supportTitle())),
207201
leading: const Icon(Icons.message),
208202
subtitle: Text(convertToUwU(supportDescription())),
209-
trailing: const Icon(Icons.open_in_browser),
210203
onTap: () async {
211204
await launchExternalUrl(url: "https://thetailcompany.com", analyticsLabel: "Support");
212205
},
213206
),
214207
ListTile(
215208
title: Text(convertToUwU(moreSourceCode())),
216209
leading: const Icon(Icons.code),
217-
trailing: const Icon(Icons.open_in_browser),
218210
onTap: () async {
219211
await launchExternalUrl(url: "https://github.com/Codel1417/tail_app", analyticsLabel: "Source Code", addTrackingUtm: false);
220212
},

0 commit comments

Comments
 (0)